| Conditions | 4 |
| Paths | 5 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 4 |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | 8 | public function __invoke($subject, $field, $min, $max) |
|
| 37 | { |
||
| 38 | 8 | $value = $subject->$field; |
|
| 39 | 8 | if (! is_scalar($value)) { |
|
| 40 | 1 | return false; |
|
| 41 | } |
||
| 42 | 7 | if ($value < $min) { |
|
| 43 | 2 | $subject->$field = $min; |
|
| 44 | } |
||
| 45 | 7 | if ($value > $max) { |
|
| 46 | 2 | $subject->$field = $max; |
|
| 47 | } |
||
| 48 | 7 | return true; |
|
| 49 | } |
||
| 50 | } |
||
| 51 |