| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 34 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 35 | { |
||
| 36 | if (!$this->environmentState->isBare()) { |
||
| 37 | throw new \Exception("Environment is populated. This command needs to run on a bare environment."); |
||
| 38 | } |
||
| 39 | |||
| 40 | $markdownDocumentation = new MarkdownDocumentation($output); |
||
| 41 | $markdownDocumentation->document($this->getApplication()); |
||
| 42 | } |
||
| 45 |