respect-validation/library
Henrique Moody eecc696792 Fix wrong date parsing on Date rule
The `DateTime::createFromFormat()` tries to guess the date too much and
sometimes wrong parsing may happen:

```php
echo DateTime::createFromFormat('Ym', '202309')->format('Ym');
```

The output of the above code is "202310", not "202309".

Using `date_parse_from_format()` we get a more precise parsing.
2016-03-31 14:18:22 -03:00
..
Exceptions Improve date and time handling on "Max" rule 2015-02-11 11:18:39 -02:00
Rules Fix wrong date parsing on Date rule 2016-03-31 14:18:22 -03:00
ExceptionIterator.php Use PSR-2 standard 2015-01-08 00:44:12 -02:00
Factory.php Create a Factory to create rules 2015-02-11 11:35:19 -02:00
Validatable.php Use PSR-2 standard 2015-01-08 00:44:12 -02:00
Validator.php Create a Factory to create rules 2015-02-11 11:35:19 -02:00