Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
34 | protected function execute(InputInterface $input, OutputInterface $output) |
||
35 | { |
||
36 | $ressource = $input->getOption('resource'); |
||
37 | |||
38 | $logs = $this->getContainer()->get('dekalee_cdn77.query.resource_log')->execute($ressource); |
||
39 | |||
40 | $output->writeln('List of file in the log'); |
||
41 | |||
42 | foreach ($logs as $log) { |
||
43 | $output->writeln($log['path']); |
||
44 | } |
||
45 | } |
||
46 | } |
||
47 |