Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | final class SituationStatus extends Enum |
||
18 | { |
||
19 | private const UNKNOWN = 'UNKNOWN'; |
||
20 | private const START = 'START'; |
||
21 | private const INITIAL = 'INITIAL'; |
||
22 | private const CONCEPT = 'CONCEPT'; |
||
23 | private const FINAL = 'FINAL'; |
||
24 | private const DELETED = 'DELETED'; |
||
25 | |||
26 | public function getLabel(): string |
||
38 |