Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class EnvironmentEventCommand extends JsonEventCommand |
||
12 | { |
||
13 | protected function getEventName(): string |
||
14 | { |
||
15 | return 'ENVIRONMENT'; |
||
16 | } |
||
17 | |||
18 | /** |
||
19 | * @param array $payload |
||
20 | * @return array|null |
||
21 | * @throws ManifestException |
||
22 | * @throws MissingEnvironmentVariableException |
||
23 | */ |
||
24 | protected function executeJsonEvent(array $payload): ?array |
||
29 | ]; |
||
30 | } |
||
32 |