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