| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 47 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 48 | { |
||
| 49 | $functions = $this->language->getFunctionNames(); |
||
| 50 | |||
| 51 | $table = new Table($output); |
||
| 52 | $table->setHeaders(['Function']); |
||
| 53 | |||
| 54 | foreach ($functions as $function) { |
||
| 55 | $table->addRow([$function]); |
||
| 56 | } |
||
| 57 | |||
| 58 | $table->render(); |
||
| 59 | } |
||
| 60 | } |
||
| 61 |