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 |
||
19 | final class TimeException extends ValidationException |
||
20 | { |
||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | public static $defaultTemplates = [ |
||
25 | self::MODE_DEFAULT => [ |
||
26 | self::STANDARD => '{{name}} must be a valid time in the format {{sample}}', |
||
27 | ], |
||
28 | self::MODE_NEGATIVE => [ |
||
29 | self::STANDARD => '{{name}} must not be a valid time in the format {{sample}}', |
||
30 | ], |
||
31 | ]; |
||
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | 1 | public function configure($name, array $params = []) |
|
46 |