| Total Complexity | 5 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Coverage | 85.71% |
| 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 | 6 | public static function getIntervalCode(string $period): string |
|
| 21 | } |
||
| 22 | |||
| 23 | 16 | public static function getDateFormat(string $period): string |
|
| 33 | } |
||
| 34 | |||
| 35 | public static function toArray(): array |
||
| 40 |