1 | <?php |
||
14 | class Printer |
||
15 | { |
||
16 | const LINE_LENGTH = 80; |
||
17 | |||
18 | /** |
||
19 | * @var FileReport[] |
||
20 | */ |
||
21 | private $fileReports = []; |
||
22 | |||
23 | /** |
||
24 | * @param FileReport $fileReport |
||
25 | */ |
||
26 | public function addFileReport(FileReport $fileReport) |
||
30 | |||
31 | /** |
||
32 | * @param OutputInterface $output |
||
33 | */ |
||
34 | public function printData(OutputInterface $output) |
||
58 | } |
||
59 |