Total Complexity | 4 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class DateHelper |
||
10 | { |
||
11 | /** |
||
12 | * Format a date, with validation. |
||
13 | */ |
||
14 | public static function format(string $date, string $format = 'Y-m-d'): string |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * Validate an already formatted date. |
||
25 | */ |
||
26 | public static function validate(string $date, string $format = 'Y-m-d'): bool |
||
37 |