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