Browse Source

Remove unnecessary parens from Auth::check.

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

+ 1 - 1
system/auth.php

@@ -33,7 +33,7 @@ class Auth {
 	 */
 	public static function check()
 	{
-		return ( ! is_null(static::user()));
+		return ! is_null(static::user());
 	}
 
 	/**