Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
46 | protected function execute(InputInterface $input, OutputInterface $output) |
||
47 | { |
||
48 | $ressource = $input->getOption('resource'); |
||
49 | |||
50 | $logs = $this->resourceLogQuery->execute($ressource); |
||
51 | |||
52 | $output->writeln('List of file in the log'); |
||
53 | |||
54 | foreach ($logs as $log) { |
||
55 | $output->writeln($log['path']); |
||
56 | } |
||
57 | } |
||
58 | } |
||
59 |