Remove unnecessary parens from Auth::check.

This commit is contained in:
Taylor Otwell 2011-08-15 14:28:36 -05:00
parent 0f7b2f72cb
commit 4d38ec0279
1 changed files with 1 additions and 1 deletions

View File

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