| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types = 1); |
||
| 8 | class CsvResultsRenderer implements ResultsRendererInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Renders the results. |
||
| 12 | * @param OutputInterface $output Output Interface. |
||
| 13 | * @param array $results The results. |
||
| 14 | * @return void |
||
| 15 | */ |
||
| 16 | public function render(OutputInterface $output, array $results): void |
||
| 22 | }; |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Get the header. |
||
| 27 | * @return string |
||
| 28 | */ |
||
| 29 | private function getHeader(): string |
||
| 34 |