You are here

class FakeMetadataFactory in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/Tests/Fixtures/FakeMetadataFactory.php \Symfony\Component\Validator\Tests\Fixtures\FakeMetadataFactory

Hierarchy

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\Fixtures
View 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

Namesort descending Modifiers Type Description Overrides
FakeMetadataFactory::$metadatas protected property
FakeMetadataFactory::addMetadata public function
FakeMetadataFactory::addMetadataForValue public function
FakeMetadataFactory::getMetadataFor public function Returns the metadata for the given value. Overrides MetadataFactoryInterface::getMetadataFor
FakeMetadataFactory::hasMetadataFor public function Returns whether the class is able to return metadata for the given value. Overrides MetadataFactoryInterface::hasMetadataFor