| Conditions | 2 |
| Paths | 2 |
| Total Lines | 17 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 27 | { |
||
| 28 | $metaArray = Analyzer\Factory::getPassesMetadata(); |
||
| 29 | |||
| 30 | $output->writeln("# Analyzers"); |
||
| 31 | $output->writeln("This doc gives an overview about what the different analyzers do."); |
||
| 32 | $output->writeln(""); |
||
| 33 | |||
| 34 | foreach ($metaArray as $analyzer) { |
||
| 35 | $output->writeln("#### " . $analyzer->getName()); |
||
| 36 | $output->writeln(""); |
||
| 37 | $output->writeln($analyzer->getDescription()); |
||
| 38 | $output->writeln(""); |
||
| 39 | } |
||
| 40 | |||
| 41 | $output->writeln("Next: [How To: Write own Analyzer](./06_HowTo_Own_Analyzer.md)"); |
||
| 42 | } |
||
| 43 | } |
||
| 44 |