respect-validation/docs/rules/Multiple.md

28 lines
359 B
Markdown
Raw Permalink Normal View History

2015-01-30 09:40:06 +01:00
# Multiple
- `Multiple(int $multipleOf)`
2015-01-30 09:40:06 +01:00
Validates if the input is a multiple of the given parameter
```php
v::intVal()->multiple(3)->validate(9); // true
2015-01-30 09:40:06 +01:00
```
## Categorization
- Math
- Numbers
## Changelog
Version | Description
--------|-------------
0.3.9 | Created
***
2015-01-30 09:40:06 +01:00
See also:
2018-12-11 13:31:50 +01:00
- [Even](Even.md)
- [Odd](Odd.md)
- [PrimeNumber](PrimeNumber.md)