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

17 lines
253 B
Markdown
Raw Normal View History

2022-08-29 20:14:13 +02:00
# Multiple
- `v::multiple(int $multipleOf)`
Validates if the input is a multiple of the given parameter
```php
v::intVal()->multiple(3)->validate(9); // true
```
***
See also:
* [Even](Even.md)
* [Odd](Odd.md)
* [PrimeNumber](PrimeNumber.md)