respect-validation/docs/rules/LeapDate.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

31 lines
443 B
Markdown

# LeapDate
- `LeapDate(string $format)`
Validates if a date is leap.
```php
v::leapDate('Y-m-d')->validate('1988-02-29'); // true
```
This validator accepts DateTime instances as well. The $format
parameter is mandatory.
## Categorization
- Date and Time
## Changelog
Version | Description
--------|-------------
0.3.9 | Created
***
See also:
- [Date](Date.md)
- [DateTime](DateTime.md)
- [LeapYear](LeapYear.md)
- [Time](Time.md)