| 1 | <?php |
||
| 22 | class GenericMetadata implements GenericMetadataInterface |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | * @internal |
||
| 27 | */ |
||
| 28 | public $className; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Constructor |
||
| 32 | * |
||
| 33 | * @param $className |
||
| 34 | */ |
||
| 35 | 5 | public function __construct($className) |
|
| 39 | |||
| 40 | /** |
||
| 41 | * @inheritdoc |
||
| 42 | */ |
||
| 43 | 1 | public function getClassName() |
|
| 47 | } |