| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | final class PeriodStatus extends Enum |
||
| 18 | { |
||
| 19 | private const INITIAL = 'INITIAL'; |
||
| 20 | private const PROBABLY_STARTED = 'PROBABLY_STARTED'; |
||
| 21 | private const STARTED = 'STARTED'; |
||
| 22 | private const OVERRUNNING = 'OVERRUNNING'; |
||
| 23 | private const PROBABLY_ENDED = 'PROBABLY_ENDED'; |
||
| 24 | private const ENDED = 'ENDED'; |
||
| 25 | |||
| 26 | public function getLabel(): string |
||
| 38 |