| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 32 | public function execute(InputInterface $input, OutputInterface $output) |
||
| 33 | { |
||
| 34 | $output->writeln('<info>List of consumers available</info>'); |
||
| 35 | foreach ($this->getMetadata() as $type => $ids) { |
||
| 36 | foreach ($ids as $id) { |
||
| 37 | $output->writeln(sprintf('<info>%s</info> - <comment>%s</comment>', $type, $id)); |
||
| 38 | } |
||
| 39 | } |
||
| 40 | |||
| 41 | $output->writeln(' done!'); |
||
| 42 | } |
||
| 43 | |||
| 52 |