public function BlackHoleMetadataFactory::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/ Mapping/ Factory/ BlackHoleMetadataFactory.php, line 36
Class
- BlackHoleMetadataFactory
- Metadata factory that does not store metadata.
Namespace
Symfony\Component\Validator\Mapping\FactoryCode
public function hasMetadataFor($value) {
return false;
}