Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
5 | class EventEnum |
||
6 | { |
||
7 | public const ADD = 'ADD'; |
||
8 | public const REMOVE = 'REMOVE'; |
||
9 | public const ASKING_FOR_DOCKER_SERVICE_INFO = 'ASKING_FOR_DOCKER_SERVICE_INFO'; |
||
10 | public const NEW_DOCKER_SERVICE_INFO = 'NEW_DOCKER_SERVICE_INFO'; |
||
11 | public const DELETE_DOCKER_SERVICE = 'DELETE_DOCKER_SERVICE'; |
||
12 | |||
13 | /** |
||
14 | * @return string[] |
||
15 | */ |
||
16 | public static function getHandledEvents(): array |
||
26 |