| 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 $scopeData Class scope name |
||
| 29 | */ |
||
| 30 | public function __construct(string $scopeData) |
||
| 34 | |||
| 35 | /** {@inheritdoc} */ |
||
| 36 | public function toClassMetadata(ClassMetadata $classMetadata) |
||
| 41 | } |
||
| 42 |