1 | <?php |
||
8 | final class UpdateUserHandler |
||
9 | { |
||
10 | /** |
||
11 | * @var UserRepository |
||
12 | */ |
||
13 | private $userRepository; |
||
14 | |||
15 | /** |
||
16 | * CreateUserHandler constructor. |
||
17 | * |
||
18 | * @param UserRepository $userRepository |
||
19 | */ |
||
20 | public function __construct(UserRepository $userRepository) |
||
24 | |||
25 | /** |
||
26 | * @param UpdateUser $command |
||
27 | */ |
||
28 | public function handle(UpdateUser $command) |
||
34 | } |
||
35 |