Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
18 | final class AreaType extends Enum |
||
19 | { |
||
20 | private const UNKNOWN = 'UNKNOWN'; |
||
21 | private const MUNICIPALITY = 'MUNICIPALITY'; |
||
22 | private const SUBMUNICIPALITY = 'SUBMUNICIPALITY'; |
||
23 | private const ROAD_AUTHORITY = 'ROAD_AUTHORITY'; |
||
24 | private const TUNNEL_AUTHORITY = 'TUNNEL_AUTHORITY'; |
||
25 | private const PROVINCE = 'PROVINCE'; |
||
26 | private const MISCELLANEOUS = 'MISCELLANEOUS'; |
||
27 | |||
28 | public function getLabel(): string |
||
41 |