From 4d38ec0279dcecca3af56c1fbfd5b3224457c72f Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 15 Aug 2011 14:28:36 -0500 Subject: [PATCH] Remove unnecessary parens from Auth::check. --- system/auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/auth.php b/system/auth.php index 12dbe2dc..d4f037a2 100644 --- a/system/auth.php +++ b/system/auth.php @@ -33,7 +33,7 @@ class Auth { */ public static function check() { - return ( ! is_null(static::user())); + return ! is_null(static::user()); } /**