Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | 3 | public function __construct($field, $value, $minimum) |
|
17 | { |
||
18 | 3 | $this->minimum = $minimum; |
|
19 | 3 | $message = sprintf('The %s must be at least %.2f', $field, $minimum); |
|
20 | $error = [ |
||
21 | 3 | 'type' => 'below_minimum', |
|
22 | 3 | 'extra' => [$minimum], |
|
23 | 3 | 'field' => $field, |
|
24 | 3 | 'message' => $message, |
|
25 | ]; |
||
26 | 3 | parent::__construct([$error], $message); |
|
27 | 3 | } |
|
37 |