Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | final class DeleteUserController extends AbstractController |
||
23 | { |
||
24 | private MessengerCommandBus $commandBus; |
||
25 | |||
26 | public function __construct(MessengerCommandBus $commandBus) |
||
27 | { |
||
28 | $this->commandBus = $commandBus; |
||
29 | } |
||
30 | |||
31 | public function __invoke(string $uuid): Response |
||
41 | } |
||
42 | } |
||
43 |