| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 30 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 31 | { |
||
| 32 | $config = Config::getInstance($this->configArray); |
||
| 33 | |||
| 34 | $creator = new DirectoryCreator($config); |
||
| 35 | |||
| 36 | $creator->create(); |
||
| 37 | |||
| 38 | foreach ($creator->getLog() as $message) { |
||
| 39 | $output->writeln($message); |
||
| 40 | } |
||
| 41 | } |
||
| 42 | } |
||
| 43 |