@@ -17,15 +17,20 @@ |
||
17 | 17 | |
18 | 18 | interface ResetPasswordPageInterface extends SymfonyPageInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function reset(): void; |
21 | 24 | |
22 | 25 | /** |
23 | 26 | * @param string $password |
27 | + * @return void |
|
24 | 28 | */ |
25 | 29 | public function specifyNewPassword(string $password): void; |
26 | 30 | |
27 | 31 | /** |
28 | 32 | * @param string $password |
33 | + * @return void |
|
29 | 34 | */ |
30 | 35 | public function specifyConfirmPassword(string $password): void; |
31 | 36 |