Conditions | 3 |
Paths | 3 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
53 | protected function execute(InputInterface $input, OutputInterface $output) |
||
54 | { |
||
55 | foreach ($this->manager->getModules() as $name => $module) { |
||
56 | $output->writeln(sprintf('<comment>%s</comment>', $module->getName())); |
||
57 | foreach ($this->finder->find($module) as $template) { |
||
58 | $output->writeln(sprintf(' %s (%s)', $template->getRelativePathname(), $template->getPathname())); |
||
59 | } |
||
60 | } |
||
61 | } |
||
62 | } |
||
63 |