Commit 4d38ec02 authored by Taylor Otwell's avatar Taylor Otwell

Remove unnecessary parens from Auth::check.

parent 0f7b2f72
...@@ -33,7 +33,7 @@ class Auth { ...@@ -33,7 +33,7 @@ class Auth {
*/ */
public static function check() public static function check()
{ {
return ( ! is_null(static::user())); return ! is_null(static::user());
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment