Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | #[\Override] |
||
21 | public function render(OutputInterface $output, array $results): void |
||
22 | { |
||
23 | $output->writeln('| File | Times Changed | Complexity | Score |'); |
||
24 | $output->writeln('|------|---------------|------------|-------|'); |
||
25 | |||
26 | foreach ($results as $result) { |
||
27 | $output->writeln($this->inline($result)); |
||
28 | } |
||
45 |