respect-validation/tests
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 Replaced phpunit mocks of exception with concretions so they will work in hhvm 2015-02-03 08:45:28 -07:00
library The creation of a DateTime-object from the input-string keeps the given 2015-04-24 23:03:45 +02:00
Rules Fix wrong date parsing on Date rule 2016-03-31 14:18:22 -03:00
FactoryTest.php Create a Factory to create rules 2015-02-11 11:35:19 -02:00
ValidatorTest.php Issue #260: Now using Respect\Validation exceptions only 2015-01-31 07:59:59 -07:00