Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
50 | protected function execute(InputInterface $input, OutputInterface $output) |
||
51 | { |
||
52 | $this->output = $output; |
||
53 | $outputFile = null; |
||
54 | if ($file = $input->getOption('output-file')) { |
||
55 | $outputFile = $file; |
||
56 | } |
||
57 | $this->service($input->getArgument($this->argument), $outputFile); |
||
58 | } |
||
59 | |||
74 |