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