| 1 | <?php declare(strict_types = 1); |
||
| 23 | class ArrayValue implements PropertyConfiguratorInterface, ParameterConfiguratorInterface, AttributeConfiguratorInterface |
||
| 24 | { |
||
| 25 | /** @var string Configurator key */ |
||
| 26 | const KEY = 'array'; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var string Property/Parameter array value |
||
| 30 | */ |
||
| 31 | protected $value = []; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Class collection configurator constructor. |
||
| 35 | * |
||
| 36 | * @param string $value Property/Parameter array value |
||
| 37 | */ |
||
| 38 | public function __construct(string $value) |
||
| 45 | |||
| 46 | /* {@inheritDoc} */ |
||
| 47 | public function toPropertyMetadata(PropertyMetadata $propertyMetadata) |
||
| 51 | |||
| 52 | /* {@inheritDoc} */ |
||
| 53 | public function toParameterMetadata(ParameterMetadata $parameterMetadata) |
||
| 57 | } |
||
| 58 |