1 | <?php |
||
16 | abstract class AbstractElasticaToModelTransformer implements ElasticaToModelTransformerInterface |
||
17 | { |
||
18 | /** |
||
19 | * PropertyAccessor instance. |
||
20 | * |
||
21 | * @var PropertyAccessorInterface |
||
22 | */ |
||
23 | protected $propertyAccessor; |
||
24 | |||
25 | /** |
||
26 | * Set the PropertyAccessor instance. |
||
27 | * |
||
28 | * @param PropertyAccessorInterface $propertyAccessor |
||
29 | */ |
||
30 | 11 | public function setPropertyAccessor(PropertyAccessorInterface $propertyAccessor) |
|
34 | } |
||
35 |