| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 30 | public function __construct( |
||
| 31 | CliRunnerInterface $cliRunner, |
||
| 32 | ErrorProcessorInterface $errorProcessor, |
||
| 33 | LoggerInterface $fileLogger, |
||
| 34 | OutputLoggerInterface $outputLogger |
||
| 35 | ) { |
||
| 36 | $this->cliRunner = $cliRunner; |
||
| 37 | |||
| 38 | $this->errorProcessor = $errorProcessor; |
||
| 39 | |||
| 40 | $this->fileLogger = $fileLogger; |
||
| 41 | |||
| 42 | $this->outputLogger = $outputLogger; |
||
| 43 | } |
||
| 45 |