| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | private function getReportWriter($format) |
||
| 38 | { |
||
| 39 | Assertion::string($format); |
||
| 40 | Assertion::notEmpty($format); |
||
| 41 | |||
| 42 | if (!isset($this->reportWriters[$format])) { |
||
| 43 | throw new \RuntimeException("ReportWriter for $format not found"); |
||
| 44 | } |
||
| 45 | |||
| 46 | return $this->reportWriters[$format]; |
||
| 47 | } |
||
| 48 | |||
| 60 |