| Total Complexity | 4 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | abstract class AbstractPeriods |
||
| 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 |
|
| 35 |