| Conditions | 2 |
| Paths | 3 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 40 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 41 | { |
||
| 42 | try { |
||
| 43 | $applications = $this->applicationManager->readAll(); |
||
| 44 | $this->renderTable($output, $applications, 'All installed Applications'); |
||
| 45 | } catch (ApplicationNotFoundException $exception) { |
||
| 46 | $output->writeln('No applications found'); |
||
| 47 | } |
||
| 50 |