class StaticLoaderEntity

Hierarchy

Expanded class hierarchy of StaticLoaderEntity

File

drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Tests/Mapping/Loader/StaticMethodLoaderTest.php, line 75

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