respect-validation/docs/Multiple.md
2017-03-28 11:53:14 +02:00

20 lines
288 B
Markdown

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