Conditions | 3 |
Paths | 3 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
43 | protected function callNext(?string $path, ServerRequestInterface $request, MiddlewareInterface $next) |
||
44 | { |
||
45 | if (null === $path) { |
||
46 | return $next->process($request, $this); |
||
47 | } |
||
48 | |||
49 | return $this->pathResolver->isMatch($path, $request) |
||
|
|||
50 | ? $next->process($request, $this) |
||
51 | : $this->handle($request); |
||
52 | } |
||
64 |
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.