It seems like the GitHub access token used for retrieving details about this repository from
GitHub became invalid. This might prevent certain types of inspections from being run (in
particular,
everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
The expression $class of type string|null is loosely compared to false; this is ambiguous if the string can be empty. You might want to explicitly use === null instead.
In PHP, under loose comparison (like ==, or !=, or switch conditions),
values of different types might be equal.
For string values, the empty string '' is a special case, in particular
the following results might be unexpected:
''==false// true''==null// true'ab'==false// false'ab'==null// false// It is often better to use strict comparison''===false// false''===null// false
Loading history...
22
return \Auth::user()->is_admin;
23
}
24
25
return \Auth::user()->is_admin;
26
}
27
28
/**
29
* Method called when a User attempts to access
30
* an area of the site or admin which they do
31
* not have the permissions to interact with.
32
*
33
* This is typically called from the CheckPermissions
34
* Middleware during a request (see: \LaravelFlare\Flare\Http\Middleware\CheckPermissions::handle())
35
* and can be used to throw an exception, return a
36
* view (abort() etc.) or anything else really.
37
*
38
* @param string $class
39
* @param string $action
40
*
41
* @return mixed
42
*/
43
public static function denied($class = null, $action = 'view')
In PHP, under loose comparison (like
==
, or!=
, orswitch
conditions), values of different types might be equal.For
string
values, the empty string''
is a special case, in particular the following results might be unexpected: