1 | <?php |
||
18 | trait MatcherAwareTrait |
||
19 | { |
||
20 | /** |
||
21 | * @var PropertyMatcherInterface |
||
22 | */ |
||
23 | private $matcher; |
||
24 | |||
25 | /** |
||
26 | * @return PropertyMatcherInterface |
||
27 | */ |
||
28 | public function getMatcher() |
||
32 | |||
33 | /** |
||
34 | * @param PropertyMatcherInterface $matcher |
||
35 | * |
||
36 | * @return $this |
||
37 | */ |
||
38 | public function setMatcher(PropertyMatcherInterface $matcher) |
||
44 | } |
||
45 |