Skip to content

Commit

Permalink
Merge pull request #261 from craighooghiem/master
Browse files Browse the repository at this point in the history
Quick fix for the latest Laravel security update. I would agree that this isn't ideal, but will solve it for now. Thanks @craighooghiem
  • Loading branch information
andrew13 committed Apr 15, 2014
2 parents 93138bc + 2e9f799 commit 9c1063a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/Zizaco/Confide/ConfideUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,36 @@ public function resetPassword( $params )
return false;
}
}

/**
* Get the remember token for password resets
*
* @return string
*/
public function getRememberToken()
{
return $this->remember_token;
}

/**
* Set the remember token for a password reset
*
* @param string
*/
public function setRememberToken($value)
{
$this->remember_token = $value;
}

/**
* Get the name of the remember token
*
* @return string
*/
public function getRememberTokenName()
{
return 'remember_token';
}

/**
* Overwrite the Ardent save method. Saves model into
Expand Down

0 comments on commit 9c1063a

Please sign in to comment.