1 | <?php |
||
19 | class PasswordResetRequestForm extends Model |
||
20 | { |
||
21 | public $email; |
||
22 | |||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | public function rules() |
||
39 | |||
40 | /** |
||
41 | * Sends an email with a link, for resetting the password. |
||
42 | * |
||
43 | * @return boolean whether the email was send |
||
44 | */ |
||
45 | public function sendEmail() |
||
69 | } |
||
70 |