Total Complexity | 3 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class VoidCommand extends EventCommand |
||
10 | { |
||
11 | protected function configure() |
||
12 | { |
||
13 | parent::configure(); |
||
14 | $this->setHidden(true); |
||
15 | } |
||
16 | |||
17 | protected function getEventName(): string |
||
18 | { |
||
19 | return 'void'; |
||
20 | } |
||
21 | |||
22 | protected function executeEvent(?string $payload): ?string |
||
27 | } |
||
28 | } |
||
29 |