| 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 | $languages = $this->languageManager->readAll(); |
||
| 44 | $this->renderTable($output, $languages, 'All installed languages'); |
||
| 45 | } catch (LanguageNotFoundException $exception) { |
||
| 46 | $output->writeln('No language found'); |
||
| 47 | } |
||
| 50 |