| 1 | <?php |
||
| 11 | class CreateUserHandler |
||
| 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 CreateUser $command |
||
| 27 | */ |
||
| 28 | public function handle(CreateUser $command) |
||
| 33 | } |
||
| 34 |