Conditions | 2 |
Paths | 3 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
42 | protected function execute(InputInterface $input, OutputInterface $output) |
||
43 | { |
||
44 | try { |
||
45 | $fields = $this->fieldManager->readAll(); |
||
46 | $this->renderTable($output, $fields, 'All installed Fields'); |
||
47 | } catch (FieldNotFoundException $exception) { |
||
48 | $output->writeln('No fields found'); |
||
49 | } |
||
52 |