Remove unnecessary parens from Auth::check.
This commit is contained in:
parent
0f7b2f72cb
commit
4d38ec0279
|
@ -33,7 +33,7 @@ class Auth {
|
||||||
*/
|
*/
|
||||||
public static function check()
|
public static function check()
|
||||||
{
|
{
|
||||||
return ( ! is_null(static::user()));
|
return ! is_null(static::user());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue