1 | <?php |
||
9 | abstract class AbstractConditionsMatcher |
||
10 | { |
||
11 | /** |
||
12 | * @var \Mcustiel\PowerRoute\Common\Factories\InputSourceFactory |
||
13 | */ |
||
14 | private $inputSouceFactory; |
||
15 | /** |
||
16 | * @var \Mcustiel\PowerRoute\Common\Factories\MatcherFactory |
||
17 | */ |
||
18 | private $matcherFactory; |
||
19 | |||
20 | /** |
||
21 | * @param \Mcustiel\PowerRoute\Common\Factories\InputSourceFactory $inputSouceFactory |
||
22 | * @param \Mcustiel\PowerRoute\Common\Factories\MatcherFactory $matcherFactory |
||
23 | */ |
||
24 | 3 | public function __construct( |
|
31 | |||
32 | /** |
||
33 | * @param array $condition |
||
34 | * |
||
35 | * @return \Mcustiel\PowerRoute\Common\Conditions\ClassArgumentObject |
||
36 | */ |
||
37 | 3 | protected function getInputSource(array $condition) |
|
43 | |||
44 | /** |
||
45 | * @param array $condition |
||
46 | * |
||
47 | * @return \Mcustiel\PowerRoute\Common\Conditions\ClassArgumentObject |
||
48 | */ |
||
49 | 3 | protected function getMatcher(array $condition) |
|
55 | } |
||
56 |