Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | protected function execute(InputInterface $input, OutputInterface $output) |
||
33 | { |
||
34 | $outputHelper = new SymfonyStyle($input, $output); |
||
35 | |||
36 | $data = json_decode(file_get_contents('stat.json'), true); |
||
37 | |||
38 | $this->getContainer()->get(StatCliDumper::class)->dump( |
||
39 | $data['stats'], |
||
40 | $data['total'], |
||
41 | $input->getOption('zoom'), |
||
42 | $outputHelper |
||
43 | ); |
||
46 |