1 | <?php |
||
7 | class ConditionsMatcherFactory |
||
8 | { |
||
9 | private $conditionMatchersMap = [ |
||
10 | 'allConditionsMatcher' => AllConditionsMatcher::class, |
||
11 | 'oneConditionsMatcher' => OneConditionMatcher::class |
||
12 | ]; |
||
13 | |||
14 | private $inputSouceFactory; |
||
15 | private $matcherFactory; |
||
16 | |||
17 | 3 | public function __construct( |
|
24 | |||
25 | 3 | public function get($id) |
|
35 | } |
||
36 |