public function testResetCorrectToken() { $form = new ResetPasswordForm($this->user[0]['password_reset_token']); expect('password should be resetted', $form->resetPassword())->true(); }
/** * Resets password. * * @param string $token * @return mixed * @throws BadRequestHttpException */ public function actionResetPassword($token) { try { $model = new ResetPasswordForm($token); } catch (InvalidParamException $e) { throw new BadRequestHttpException($e->getMessage()); } if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) { Yii::$app->session->setFlash('success', 'Новый пароль сохранен. Теперь вы можете войти на сайт, используя новый пароль.'); return $this->redirect(['site/login']); } return $this->render('resetPassword', ['model' => $model]); }