renamed auth remember to auth login.

This commit is contained in:
Taylor Otwell
2011-10-08 20:08:09 -05:00
parent c5c0ebc00a
commit 45933cd038

View File

@@ -69,7 +69,7 @@ class Auth {
{
if ( ! is_null($user = call_user_func(Config::get('auth.attempt'), $username, $password)))
{
static::remember($user);
static::login($user);
return true;
}
@@ -85,7 +85,7 @@ class Auth {
* @param object $user
* @return void
*/
public static function remember($user)
public static function login($user)
{
static::$user = $user;