| Conditions | 4 |
| Paths | 4 |
| Total Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 12 |
| CRAP Score | 4 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | 28 | public function check(Resource $resource) |
|
| 20 | { |
||
| 21 | 28 | foreach ($resource->properties() as $key => $value) { |
|
| 22 | 19 | if (isset($resource->ranges()[$key])) { |
|
| 23 | 1 | if ($value < $resource->ranges()[$key]['more_than']) { |
|
| 24 | 1 | throw new \Sensorario\Resources\Exceptions\OutOfRangeException( |
|
| 25 | 1 | 'Value `' . $value . '` is out of range: ' |
|
| 26 | 1 | . '`' |
|
| 27 | 1 | . $resource->ranges()[$key]['more_than'] |
|
| 28 | 1 | . ' to ' |
|
| 29 | 1 | . $resource->ranges()[$key]['more_than'] |
|
| 30 | 19 | . '`.' |
|
| 31 | ); |
||
| 32 | } |
||
| 33 | } |
||
| 34 | } |
||
| 35 | 27 | } |
|
| 36 | } |
||
| 37 |