This check compares calls to functions or methods with their respective definitions.
If the call has more arguments than are defined, it raises an issue.
If a function is defined several times with a different number of parameters, the
check may pick up the wrong definition and report false positives. One codebase
where this has been known to happen is Wordpress. Please note the @ignore annotation hint above.
Loading history...
28
457
'Resolved `null` from the container.',
29
457
);
30
} catch (\Throwable $e) {
31
throw new ContainerException(
32
\sprintf('Unable to resolve `%s` in a Proxy.', $alias),
33
previous: $e,
34
);
35
}
36
37
457
if (Proxy::isProxy($result)) {
38
1
throw new RecursiveProxyException(
39
1
\sprintf('Recursive proxy detected for `%s`.', $alias),
This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.
If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress. Please note the @ignore annotation hint above.