| Conditions | 4 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 4 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | 5 | public function __construct( |
|
| 18 | ?ProcessorConfig $processorConfig = null, |
||
| 19 | ?ImageConfig $imageConfig = null, |
||
| 20 | ?ThumbConfig $thumbConfig = null |
||
| 21 | ) |
||
| 22 | { |
||
| 23 | 5 | $this->processorConfig = $processorConfig ?: new ProcessorConfig(); |
|
| 24 | 5 | $this->imageConfig = $imageConfig ?: new ImageConfig(); |
|
| 25 | 5 | $this->thumbConfig = $thumbConfig ?: new ThumbConfig(); |
|
| 26 | 5 | } |
|
| 60 |