| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | enum ClientVigilanceLevel: string |
||
| 8 | { |
||
| 9 | use EnumToArray; |
||
| 10 | |||
| 11 | case LOW = 'low'; |
||
| 12 | case MEDIUM = 'medium'; |
||
| 13 | case HIGH = 'high'; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Returns the enum case name that can be displayed by the frontend. |
||
| 17 | * |
||
| 18 | * @return string |
||
| 19 | */ |
||
| 20 | 6 | public function getDisplayName(): string |
|
| 29 |