| Total Complexity | 3 | 
| Total Lines | 19 | 
| Duplicated Lines | 0 % | 
| Coverage | 66.67% | 
| 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 | 12 | public static function getDateFormat(string $period): string | |
| 19 | } | ||
| 20 | |||
| 21 | public static function toArray(): array | ||
| 26 |