| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public function __construct(Command $command, InputInterface $input, OutputInterface $output, \Exception $exception = null, $exitCode = 0) |
||
| 31 | { |
||
| 32 | $this->command = $command; |
||
| 33 | $this->input = $input; |
||
| 34 | $this->output = $output; |
||
| 35 | $this->exception = $exception; |
||
| 36 | $this->exitCode = $exitCode; |
||
| 37 | } |
||
| 38 | |||
| 79 |