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