Conditions | 2 |
Paths | 2 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
30 | public function run() |
||
31 | { |
||
32 | if ($this->currentValue > $this->maxValue) { |
||
33 | return new Result(Result::STATUS_FAIL, 'The given value ("' . $this->valueName . '") is too big, it must be less than ' . $this->maxValue . '.'); |
||
34 | } else { |
||
35 | return new Result(Result::STATUS_PASS, 'The value ("' . $this->valueName . '") was within limits (< ' . $this->maxValue . ').'); |
||
36 | } |
||
44 |