| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 6 | ||
| Bugs | 1 | Features | 1 |
| 1 | <?php |
||
| 28 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 29 | { |
||
| 30 | $this->init($input, $output); |
||
| 31 | |||
| 32 | $this->initConfiguration( |
||
| 33 | $input->getOption('config_file'), |
||
| 34 | $this->eventDispatcher); |
||
| 35 | |||
| 36 | if ($input->getOption('bootstrap')) { |
||
| 37 | include $input->getOption('bootstrap'); |
||
| 38 | } |
||
| 39 | |||
| 40 | return $this->scan(); |
||
| 41 | } |
||
| 42 | |||
| 54 |