1# Multiple
2
3- `v::multiple(int $multipleOf)`
4
5Validates if the input is a multiple of the given parameter
6
7```php
8v::intVal()->multiple(3)->validate(9); // true
9```
10
11***
12See also:
13
14  * [PrimeNumber](PrimeNumber.md)
15