Total Complexity | 4 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 80% |
Changes | 0 |
1 | <?php |
||
5 | abstract class AbstractPeriod |
||
6 | { |
||
7 | abstract protected static function getIntervalCodes(): array; |
||
8 | |||
9 | abstract protected static function getDateFormats(): array; |
||
10 | |||
11 | 4 | public static function getIntervalCode(string $period): string |
|
14 | } |
||
15 | |||
16 | 15 | public static function getDateFormat(string $period): string |
|
26 | } |
||
27 | |||
28 | public static function toArray(): array |
||
33 |