| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | trait MonthTrait |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Format --MM with optional timezone representation |
||
| 16 | */ |
||
| 17 | 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'; |
||
| 18 | |||
| 19 | |||
| 20 | /** |
||
| 21 | * @param string $value |
||
| 22 | * @param string $message |
||
| 23 | */ |
||
| 24 | protected static function validMonth(string $value, string $message = ''): void |
||
| 34 |