Conditions | 3 |
Paths | 4 |
Total Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
22 | 150 | public function __construct(FileOutputInterface $fileOutput = null, ImageOutputInterface $imageOutput = null) |
|
23 | { |
||
24 | 150 | $this->fileImpl = $fileOutput === null ? new FileOutput() : $fileOutput; |
|
25 | 150 | $this->imageImpl = $imageOutput === null ? new ImageOutput() : $imageOutput; |
|
26 | 150 | } |
|
27 | |||
67 | } |