If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
15
if ($user->/** @scrutinizer ignore-call */ can('admin roles & permissions')) {
This check looks for calls to methods that do not seem to exist on a given type.
It looks for the method on the type itself as well as in inherited classes or
implemented interfaces.
This is most likely a typographical error or the method has been renamed.
Loading history...
16
return true;
17
}
18
}
19
20
/**
21
* Determine whether the user can view the server.
22
*
23
* @param \Gameap\Models\User $user
24
* @param \Gameap\Models\Server $server
25
* @return mixed
26
*/
27
public function control(?User $user, Server $server)
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.