| 1 | <?php declare(strict_types = 1); |
||
| 20 | class ScopeConfigurator implements ClassConfiguratorInterface |
||
| 21 | { |
||
| 22 | /** @var string Class scope name */ |
||
| 23 | protected $scopeName; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * ScopeConfigurator constructor. |
||
| 27 | * |
||
| 28 | * @param string $scopeName Class scope name |
||
| 29 | */ |
||
| 30 | 11 | public function __construct(string $scopeName) |
|
| 34 | |||
| 35 | /** {@inheritdoc} */ |
||
| 36 | 1 | public function toClassMetadata(ClassMetadata $classMetadata) |
|
| 41 | } |
||
| 42 |