class FakeMetadataFactory in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/validator/Tests/Fixtures/FakeMetadataFactory.php \Symfony\Component\Validator\Tests\Fixtures\FakeMetadataFactory
Hierarchy
- class \Symfony\Component\Validator\Tests\Fixtures\FakeMetadataFactory implements MetadataFactoryInterface
Expanded class hierarchy of FakeMetadataFactory
1 file declares its use of FakeMetadataFactory
- AbstractValidatorTest.php in vendor/
symfony/ validator/ Tests/ Validator/ AbstractValidatorTest.php
File
- vendor/
symfony/ validator/ Tests/ Fixtures/ FakeMetadataFactory.php, line 18
Namespace
Symfony\Component\Validator\Tests\FixturesView source
class FakeMetadataFactory implements MetadataFactoryInterface {
protected $metadatas = array();
public function getMetadataFor($class) {
$hash = null;
if (is_object($class)) {
$hash = spl_object_hash($class);
$class = get_class($class);
}
if (!is_string($class)) {
throw new NoSuchMetadataException(sprintf('No metadata for type %s', gettype($class)));
}
if (!isset($this->metadatas[$class])) {
if (isset($this->metadatas[$hash])) {
return $this->metadatas[$hash];
}
throw new NoSuchMetadataException(sprintf('No metadata for "%s"', $class));
}
return $this->metadatas[$class];
}
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]);
}
public function addMetadata($metadata) {
$this->metadatas[$metadata
->getClassName()] = $metadata;
}
public function addMetadataForValue($value, MetadataInterface $metadata) {
$key = is_object($value) ? spl_object_hash($value) : $value;
$this->metadatas[$key] = $metadata;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FakeMetadataFactory:: |
protected | property | ||
FakeMetadataFactory:: |
public | function | ||
FakeMetadataFactory:: |
public | function | ||
FakeMetadataFactory:: |
public | function |
Returns the metadata for the given value. Overrides MetadataFactoryInterface:: |
|
FakeMetadataFactory:: |
public | function |
Returns whether the class is able to return metadata for the given value. Overrides MetadataFactoryInterface:: |