1 | <?php |
||
8 | final class AssociationPropertyAccessor implements PropertyAccessorInterface |
||
9 | { |
||
10 | /** @var PropertyAccessorInterface */ |
||
11 | private $delegate; |
||
12 | /** @var ManagerRegistry */ |
||
13 | private $registry; |
||
14 | /** @var AssociationNormalizer */ |
||
15 | private $normalizer; |
||
16 | |||
17 | /** |
||
18 | * AssociationPropertyAccessor constructor. |
||
19 | * |
||
20 | * @param PropertyAccessorInterface $delegate |
||
21 | * @param ManagerRegistry $registry |
||
22 | */ |
||
23 | 6 | public function __construct(PropertyAccessorInterface $delegate, ManagerRegistry $registry) |
|
30 | |||
31 | /** {@inheritdoc} */ |
||
32 | public function setValue(&$objectOrArray, $propertyPath, $value) |
||
38 | |||
39 | /** {@inheritdoc} */ |
||
40 | 5 | public function getValue($objectOrArray, $propertyPath) |
|
48 | |||
49 | /** {@inheritdoc} */ |
||
50 | public function isWritable($objectOrArray, $propertyPath) |
||
54 | |||
55 | /** {@inheritdoc} */ |
||
56 | public function isReadable($objectOrArray, $propertyPath) |
||
60 | } |
||
61 |