1 | <?php |
||
12 | class ArrayParser implements ValueParserInterface |
||
13 | { |
||
14 | const NAME = 'array'; |
||
15 | |||
16 | /** |
||
17 | * @inheritDoc |
||
18 | */ |
||
19 | public function getName() |
||
23 | |||
24 | /** |
||
25 | * @inheritDoc |
||
26 | */ |
||
27 | public function toObjectValue($value, $type, \ReflectionProperty $property, $object) |
||
37 | |||
38 | /** |
||
39 | * @inheritDoc |
||
40 | */ |
||
41 | public function toArrayValue($value, $type, \ReflectionProperty $property, $object) |
||
45 | } |