| 1 | <?php declare(strict_types = 1); |
||
| 20 | class Name implements ClassConfiguratorInterface, CollectionAttributeConfiguratorInterface |
||
| 21 | { |
||
| 22 | /** @var string Dependency name */ |
||
| 23 | protected $name; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Dependency name collection configurator constructor. |
||
| 27 | * |
||
| 28 | * @param string $name Dependency name |
||
| 29 | */ |
||
| 30 | 1 | public function __construct(string $name) |
|
| 34 | |||
| 35 | /** |
||
| 36 | * {@inheritDoc} |
||
| 37 | */ |
||
| 38 | 1 | public function toClassMetadata(ClassMetadata $classMetadata) |
|
| 42 | } |
||
| 43 |