| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 3 |
| Changes | 3 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 26 | 18 | public function __construct ($output = null) |
|
| 27 | { |
||
| 28 | 18 | $this->logger = null; |
|
| 29 | |||
| 30 | 18 | if (!is_null($output)) |
|
| 31 | 18 | { |
|
| 32 | 18 | $this->output = ($output instanceof ConsoleInterface) ? $output->getOutputInterface() : $output; |
|
| 33 | 18 | $this->logger = new ConsoleLogger($this->output); |
|
| 34 | 18 | } |
|
| 35 | 18 | } |
|
| 36 | |||
| 74 | } |