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