Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
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 | |||
59 |