Commit 45933cd0 authored by Taylor Otwell's avatar Taylor Otwell

renamed auth remember to auth login.

parent c5c0ebc0
...@@ -69,7 +69,7 @@ class Auth { ...@@ -69,7 +69,7 @@ class Auth {
{ {
if ( ! is_null($user = call_user_func(Config::get('auth.attempt'), $username, $password))) if ( ! is_null($user = call_user_func(Config::get('auth.attempt'), $username, $password)))
{ {
static::remember($user); static::login($user);
return true; return true;
} }
...@@ -85,7 +85,7 @@ class Auth { ...@@ -85,7 +85,7 @@ class Auth {
* @param object $user * @param object $user
* @return void * @return void
*/ */
public static function remember($user) public static function login($user)
{ {
static::$user = $user; static::$user = $user;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment