1 | <?php |
||
7 | final class DeleteUserHandler extends UserHandler |
||
8 | { |
||
9 | /** |
||
10 | * @var UserRepositoryCollection |
||
11 | */ |
||
12 | private $userRepositoryCollection; |
||
13 | |||
14 | /** |
||
15 | * DeleteUserHandler constructor. |
||
16 | * |
||
17 | * @param UserRepositoryCollection $userRepositoryCollection |
||
18 | */ |
||
19 | public function __construct(UserRepositoryCollection $userRepositoryCollection) |
||
23 | |||
24 | /** |
||
25 | * @param DeleteUser $command |
||
26 | */ |
||
27 | public function handle(DeleteUser $command) |
||
32 | } |
||
33 |