| 1 | <?php |
||
| 7 | class PasswordReset |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var UserInterface |
||
| 11 | */ |
||
| 12 | private $user; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | private $password; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | private $passwordConfirmation; |
||
| 23 | |||
| 24 | public function __construct(UserInterface $user, $password, $passwordConfirmation) |
||
| 30 | |||
| 31 | public function getUser() |
||
| 35 | |||
| 36 | public function getPassword() |
||
| 40 | |||
| 41 | public function passwordConfirmationIsValid() |
||
| 49 | } |
||
| 50 |