Skip to content

Commit

Permalink
clean up property name
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Dec 1, 2016
1 parent e798177 commit 38612c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Illuminate/Auth/Authenticatable.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
trait Authenticatable
{
/**
* Variable containing "remember me" column name.
* The column name of the "remember me" token.
*
* @var string
*/
protected $remember_column = 'remember_token';
protected $rememberTokenName = 'remember_token';

/**
* Get the name of the unique identifier for the user.
Expand Down Expand Up @@ -73,6 +73,6 @@ public function setRememberToken($value)
*/
public function getRememberTokenName()
{
return $this->remember_column;
return $this->rememberTokenName;
}
}

0 comments on commit 38612c0

Please sign in to comment.