respect-validation/docs/rules/PrimeNumber.md

29 lines
353 B
Markdown
Raw Normal View History

2015-01-30 09:40:06 +01:00
# PrimeNumber
- `PrimeNumber()`
2015-01-30 09:40:06 +01:00
Validates a prime number
```php
v::primeNumber()->validate(7); // true
2015-01-30 09:40:06 +01:00
```
## Categorization
- Math
- Numbers
## Changelog
Version | Description
--------|-------------
0.3.9 | Created
***
See also:
- [Factor](Factor.md)
2018-12-11 13:31:50 +01:00
- [Fibonacci](Fibonacci.md)
- [Multiple](Multiple.md)
- [PerfectSquare](PerfectSquare.md)