tao-test/app/vendor/respect/validation/docs/rules/Negative.md

15 lines
177 B
Markdown
Raw Normal View History

2022-08-29 20:14:13 +02:00
# Negative
- `v::negative()`
Validates if a number is lower than zero
```php
v::numeric()->negative()->validate(-15); // true
```
***
See also:
* [Positive](Positive.md)