Total Complexity | 4 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | class Cache implements RequestHandlerInterface |
||
27 | { |
||
28 | /** |
||
29 | * Cache::handle |
||
30 | * |
||
31 | * Handles a request and produces a response |
||
32 | * |
||
33 | * May call other collaborating code to generate the response. |
||
34 | * |
||
35 | * @param \O2System\Psr\Http\Message\ServerRequestInterface $request |
||
36 | * |
||
37 | * @throws \Psr\Cache\InvalidArgumentException |
||
38 | */ |
||
39 | public function handle(ServerRequestInterface $request) |
||
58 | } |
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.