| 1 | <?php |
||
| 10 | class ResetPasswordHandler |
||
| 11 | { |
||
| 12 | /** @var BaseUserRepositoryCollection */ |
||
| 13 | private $userRepositoryCollection; |
||
| 14 | |||
| 15 | /** @var EncoderFactoryInterface */ |
||
| 16 | private $encoderFactory; |
||
| 17 | |||
| 18 | public function __construct( |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param ChangePasswordDataTransferObject $dataTransferObject |
||
| 28 | * |
||
| 29 | * @throws InvalidPasswordConfirmationException |
||
| 30 | */ |
||
| 31 | public function handle(ChangePasswordDataTransferObject $dataTransferObject): void |
||
| 40 | } |
||
| 41 |