Conditions | 3 |
Paths | 2 |
Total Lines | 5 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
47 | 51 | protected function validate(int $value): void |
|
48 | { |
||
49 | 51 | if ($value < $this->minValue || $value > $this->maxValue) |
|
50 | { |
||
51 | 4 | throw new InvalidArgumentException('Value ' . $value . ' is out of bounds (' . $this->minValue . '..' . $this->maxValue . ')'); |
|
52 | } |
||
62 | } |