respect-validation/docs/rules/Multiple.md
Henrique Moody 10df3211f5
Add "Categorization" section to rule documentations
Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2019-05-11 19:16:21 +02:00

28 lines
359 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
```
## Categorization
- Math
- Numbers
## Changelog
Version | Description
--------|-------------
0.3.9 | Created
***
See also:
- [Even](Even.md)
- [Odd](Odd.md)
- [PrimeNumber](PrimeNumber.md)