1 | <?php |
||
10 | class PasswordResetRequestForm extends Model |
||
11 | { |
||
12 | public $email; |
||
13 | |||
14 | /** |
||
15 | * @inheritdoc |
||
16 | */ |
||
17 | public function rules() |
||
30 | |||
31 | /** |
||
32 | * Sends an email with a link, for resetting the password. |
||
33 | * |
||
34 | * @return boolean whether the email was send |
||
35 | */ |
||
36 | public function sendEmail() |
||
67 | } |
||
68 |