mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 15:50:03 +01:00
14 lines
214 B
Markdown
14 lines
214 B
Markdown
# 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:
|
|
|
|
* [PrimeNumber](PrimeNumber.md)
|