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