| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 44 | public function getReporter($format, OutputInterface $output) |
||
| 45 | { |
||
| 46 | if (array_key_exists($format, $this->formatters)) { |
||
| 47 | return new Reporter($this->formatters[$format], $output); |
||
| 48 | } |
||
| 49 | |||
| 50 | throw new \LogicException(sprintf('No reporter registered for format "%s".', $format)); |
||
| 51 | } |
||
| 52 | } |
||
| 53 |