Browse Source

Refactor Auth class for consistency.

Taylor Otwell 13 years ago
parent
commit
2e34309539
1 changed files with 2 additions and 2 deletions
  1. 2 2
      system/auth.php

+ 2 - 2
system/auth.php

@@ -132,9 +132,9 @@ class Auth {
 	 */
 	public static function logout()
 	{
-		Session::forget(static::$key);
-
 		static::$user = null;
+
+		Session::forget(static::$key);
 	}
 
 }