| 1 | <?php |
||
| 8 | final class CreateUserHandler |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var UserRepository |
||
| 12 | */ |
||
| 13 | private $userRepository; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param UserRepository $userRepository |
||
| 17 | */ |
||
| 18 | public function __construct(UserRepository $userRepository) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param CreateUser $command |
||
| 25 | */ |
||
| 26 | public function handle(CreateUser $command) |
||
| 31 | } |
||
| 32 |