| Conditions | 3 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 3 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | 36 | public function output($value) |
|
| 28 | { |
||
| 29 | 36 | if ($value < $this->minValue || $value > $this->maxValue) |
|
| 30 | { |
||
| 31 | 4 | throw new InvalidArgumentException('Value ' . $value .' is out of bounds (' . $this->minValue . '..' . $this->maxValue . ')'); |
|
| 32 | } |
||
| 33 | |||
| 34 | 32 | return $this->outputValidValue($value); |
|
| 35 | } |
||
| 36 | |||
| 44 | } |