public function FakeMetadataFactory::hasMetadataFor in Plug 7
Returns whether the class is able to return metadata for the given value.
Parameters
mixed $value Some value:
Return value
bool Whether metadata can be returned for that value
Overrides MetadataFactoryInterface::hasMetadataFor
File
- lib/
Symfony/ validator/ Symfony/ Component/ Validator/ Tests/ Fixtures/ FakeMetadataFactory.php, line 46
Class
Namespace
Symfony\Component\Validator\Tests\FixturesCode
public function hasMetadataFor($class) {
$hash = null;
if (is_object($class)) {
$hash = spl_object_hash($class);
$class = get_class($class);
}
if (!is_string($class)) {
return false;
}
return isset($this->metadatas[$class]) || isset($this->metadatas[$hash]);
}