Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | protected function validate(): void |
||
18 | { |
||
19 | match (true) { |
||
20 | $this->revolver === null => throw new LogicException('Revolver is not set.'), |
||
21 | $this->leadingSpacer === null => throw new LogicException('Leading spacer is not set.'), |
||
22 | $this->trailingSpacer === null => throw new LogicException('Trailing spacer is not set.'), |
||
23 | default => null, |
||
24 | }; |
||
27 |