mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 15:50:03 +01:00
The "Max" rule is not a transformation, validating the maximum value in the input against a given rule. Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
627 B
627 B
LessThan
LessThan(mixed $compareTo)
Validates whether the input is less than a value.
v::lessThan(10)->validate(9); // true
v::lessThan(10)->validate(10); // false
Validation makes comparison easier, check out our supported comparable values.
Message template for this validator includes {{compareTo}}.
Categorization
- Comparisons
Changelog
| Version | Description |
|---|---|
| 2.0.0 | Created |
See also: