1 | <?php |
||
13 | trait PropertyFilterTrait |
||
14 | { |
||
15 | /** |
||
16 | * @var PropertyFilterInterface |
||
17 | */ |
||
18 | protected $propertyFilter; |
||
19 | |||
20 | /** |
||
21 | * @inheritdoc |
||
22 | */ |
||
23 | public function getPropertyFilter() : PropertyFilterInterface |
||
31 | |||
32 | /** |
||
33 | * @inheritdoc |
||
34 | */ |
||
35 | public function setPropertyFilter(PropertyFilterInterface $filter) |
||
39 | } |
||
40 |