| Conditions | 2 |
| Paths | 2 |
| Total Lines | 6 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | 18 | private function setImageProcessor(?string $imageProcessor): void |
|
| 29 | { |
||
| 30 | 18 | if (!\in_array($imageProcessor, ['neato', 'dot'], true)) { |
|
| 31 | 6 | throw new RuntimeException("Invalid processor '$imageProcessor' found, expected processors are neato and dot"); |
|
| 32 | } |
||
| 33 | 12 | $this->imageProcessor = $imageProcessor; |
|
| 34 | 12 | } |
|
| 36 |