1 | <?php |
||
25 | trait PluginsTrait |
||
26 | { |
||
27 | |||
28 | /** |
||
29 | * Matcher configuration |
||
30 | * @var MatcherConfig |
||
31 | */ |
||
32 | private $_plugins = []; |
||
33 | |||
34 | /** |
||
35 | * Get matcher configuration |
||
36 | * @return MatcherConfig |
||
37 | */ |
||
38 | 61 | public function getPlugins() |
|
42 | |||
43 | /** |
||
44 | * Set matcher configuration |
||
45 | * @param MatcherConfig $plugins |
||
46 | * @return MatcherInterface|PluginsTrait |
||
47 | */ |
||
48 | 61 | public function setPlugins(MatcherConfig $plugins) |
|
55 | |||
56 | } |
||
57 |