| 1 | <?php |
||
| 13 | class CheckMaxValue extends CheckNumeric |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var int|float|null |
||
| 17 | */ |
||
| 18 | private $max; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param int|float $max max value |
||
| 22 | * @param string|null $error optional custom error message |
||
| 23 | */ |
||
| 24 | 2 | public function __construct($max, $error = null) |
|
| 30 | |||
| 31 | 1 | public function validate(FieldInterface $field, InputModel $model, InputValidation $validation) |
|
| 48 | } |
||
| 49 |