| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 45 | public function process(CodeCoverage $coverage) |
||
| 46 | { |
||
| 47 | $coverageResults = $this->text->process($coverage, $this->showColors); |
||
| 48 | |||
| 49 | if ($this->targetFile) { |
||
| 50 | file_put_contents($this->targetFile->getFilePath(), $coverageResults); |
||
| 51 | } else { |
||
| 52 | $this->output->writeln($coverageResults); |
||
| 53 | } |
||
| 54 | } |
||
| 55 | } |
||
| 56 |