| 1 | <?php |
||
| 8 | class PasswordResetHandler |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var UserRepositoryCollection |
||
| 12 | */ |
||
| 13 | private $userRepositoryCollection; |
||
| 14 | |||
| 15 | public function __construct(UserRepositoryCollection $userRepositoryCollection) |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param ResetPassword $command |
||
| 22 | * |
||
| 23 | * @throws InvalidPasswordConfirmationException |
||
| 24 | */ |
||
| 25 | public function handle(ResetPassword $command) |
||
| 40 | } |
||
| 41 |