| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function run(InputInterface $input = null, OutputInterface $output = null) |
||
| 15 | { |
||
| 16 | if (null === $output) { |
||
| 17 | $styles = array(); |
||
| 18 | $styles['failure'] = new OutputFormatterStyle('red'); |
||
| 19 | $formatter = new OutputFormatter(false, $styles); |
||
| 20 | $output = new ConsoleOutput(ConsoleOutput::VERBOSITY_NORMAL, null, $formatter); |
||
| 21 | } |
||
| 22 | return parent::run($input, $output); |
||
| 23 | } |
||
| 42 |