| Conditions | 3 |
| Paths | 2 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | protected function checkMin() |
||
| 29 | { |
||
| 30 | if (!is_null($this->minValue) && $this->getValue() < $this->minValue) { |
||
| 31 | throw new InvalidOptionValueException( |
||
| 32 | '"' . $this->id . '" option must be set to minimum ' . $this->minValue . '. ' . |
||
| 33 | 'It was however set to: ' . $this->getValue() |
||
| 34 | ); |
||
| 60 |