Exemplo n.º 1
0
 /**
  * Delete the record of the given token from 'password_reminders' table.
  *
  * @param string $token Token retrieved from a forgotPassword.
  *
  * @return boolean Success.
  */
 public function destroyForgotPasswordToken($token)
 {
     return $this->passService->destroyToken($token);
 }