| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types = 1); |
||
| 17 | public function render(OutputInterface $output, ResultCollection $results) |
||
| 18 | { |
||
| 19 | $output->write($this->getHeader()); |
||
| 20 | |||
| 21 | $table = new Table($output); |
||
| 22 | $table->setHeaders(['File', 'Times Changed', 'Complexity', 'Score']); |
||
| 23 | $table->addRows($results->toArray()); |
||
| 24 | $table->render(); |
||
| 25 | |||
| 26 | $output->write("\n"); |
||
| 27 | } |
||
| 28 | |||
| 42 |