respect-validation/docs/Multiple.md
2015-08-20 01:38:41 -03:00

14 lines
211 B
Markdown

# Multiple
- `v::multiple(int $multipleOf)`
Validates if the input is a multiple of the given parameter
```php
v::int()->multiple(3)->validate(9); //true
```
***
See also:
* [PrimeNumber](PrimeNumber.md)