Total Complexity | 1 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | enum UserType: string implements LocalizedPhpEnumType |
||
10 | { |
||
11 | /** |
||
12 | * Someone who is a normal user, not part of AAI. |
||
13 | */ |
||
14 | case Default = 'default'; |
||
15 | |||
16 | /** |
||
17 | * Someone who log in via AAI system. |
||
18 | */ |
||
19 | case Aai = 'aai'; |
||
20 | |||
21 | /** |
||
22 | * Empty shell used for legacy. |
||
23 | */ |
||
24 | case Legacy = 'legacy'; |
||
25 | |||
26 | 1 | public function getDescription(): string |
|
35 |