Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | trait MonthTrait |
||
13 | { |
||
14 | /** |
||
15 | * Format --MM with optional timezone representation |
||
16 | * |
||
17 | * @var string |
||
18 | */ |
||
19 | private static string $month_regex = '/^--(0[1-9]|1[012])((\+|-)([0-1][0-9]|2[0-4]):(0[0-9]|[1-5][0-9])|Z)?$/D'; |
||
20 | |||
21 | |||
22 | /** |
||
23 | * @param string $value |
||
24 | * @param string $message |
||
25 | */ |
||
26 | protected static function validMonth(string $value, string $message = ''): void |
||
36 |