1 | <?php |
||
21 | class Property extends Field |
||
22 | { |
||
23 | /** |
||
24 | * @var PropertyAccessorInterface |
||
25 | */ |
||
26 | private static $accessor = null; |
||
27 | |||
28 | /** |
||
29 | * @return \Symfony\Component\PropertyAccess\PropertyAccessorInterface |
||
30 | */ |
||
31 | protected static function accessor() |
||
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | */ |
||
43 | public function apply($value) |
||
55 | } |
||
56 |