mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 15:50:03 +01:00
Also does not allow validation of non-numeric values. Co-Authored-By: Henrique Moody <henriquemoody@gmail.com>
369 B
369 B
Positive
Positive()
Validates whether the input is a positive number.
v::positive()->validate(1); // true
v::positive()->validate(0); // false
v::positive()->validate(-15); // false
Changelog
| Version | Description |
|---|---|
| 2.0.0 | Does not validate non-numeric values |
| 0.3.9 | Created |
See also: