Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2.0116 |
Changes | 2 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
25 | 3 | public function get($name) |
|
26 | { |
||
27 | 3 | if (isset($this->conditionMatchersMap[$name])) { |
|
28 | 3 | return new $this->conditionMatchersMap[$name]( |
|
29 | 3 | $this->inputSouceFactory, |
|
30 | 3 | $this->matcherFactory |
|
31 | 3 | ); |
|
32 | } |
||
33 | throw new \RuntimeException('Invalid condition matcher specified'); |
||
34 | } |
||
35 | } |
||
36 |