We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 1 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
20 | final class DateException extends ValidationException |
||
21 | { |
||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public static $defaultTemplates = [ |
||
26 | self::MODE_DEFAULT => [ |
||
27 | self::STANDARD => '{{name}} must be a valid date in the format {{sample}}', |
||
28 | ], |
||
29 | self::MODE_NEGATIVE => [ |
||
30 | self::STANDARD => '{{name}} must not be a valid date in the format {{sample}}', |
||
31 | ], |
||
32 | ]; |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | 1 | public function configure($name, array $params = []) |
|
47 |