| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1.0046 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 42 | 2 | public function image() |
|
| 43 | { |
||
| 44 | 2 | $colorBlockImage = match ($this->extension) { |
|
| 45 | 1 | 'png' => ( new ColorBlockPng($this->with, $this->height, $this->color) ), |
|
| 46 | 'jpg', 'jpeg' => ( new ColorBlockJpg($this->with, $this->height, $this->color) ), |
||
| 47 | 1 | default => ( new ColorBlockSvg($this->with, $this->height, $this->color) ), |
|
| 48 | }; |
||
| 49 | |||
| 50 | 2 | return $colorBlockImage->image(); |
|
| 51 | } |
||
| 53 |