You are here

class StaticLoaderEntity in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/Tests/Mapping/Loader/StaticMethodLoaderTest.php \Symfony\Component\Validator\Tests\Mapping\Loader\StaticLoaderEntity

Hierarchy

Expanded class hierarchy of StaticLoaderEntity

File

vendor/symfony/validator/Tests/Mapping/Loader/StaticMethodLoaderTest.php, line 123

Namespace

Symfony\Component\Validator\Tests\Mapping\Loader
View source
class StaticLoaderEntity {
  public static $invokedWith = null;
  public static function loadMetadata(ClassMetadata $metadata) {
    self::$invokedWith = $metadata;
  }

}

Members