Browse Source

renamed auth remember to auth login.

Taylor Otwell 13 years ago
parent
commit
45933cd038
1 changed files with 2 additions and 2 deletions
  1. 2 2
      laravel/security/auth.php

+ 2 - 2
laravel/security/auth.php

@@ -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 {
 	 * @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;