1 | <?php |
||
9 | class Phroute |
||
10 | { |
||
11 | |||
12 | /** |
||
13 | * @var Dispatcher Phroute dispatcher |
||
14 | */ |
||
15 | private $router; |
||
16 | |||
17 | /** |
||
18 | * Set the Dispatcher instance. |
||
19 | * |
||
20 | * @param Dispatcher|null $router |
||
21 | */ |
||
22 | public function __construct(Dispatcher $router) |
||
26 | |||
27 | /** |
||
28 | * Execute the middleware. |
||
29 | * |
||
30 | * @param ServerRequestInterface $request |
||
31 | * @param ResponseInterface $response |
||
32 | * @param callable $next |
||
33 | * |
||
34 | * @return ResponseInterface |
||
35 | */ |
||
36 | public function __invoke(ServerRequestInterface $request, ResponseInterface $response, callable $next) { |
||
53 | } |
||
54 |
Scrutinizer analyzes your
composer.json
/composer.lock
file if available to determine the classes, and functions that are defined by your dependencies.It seems like the listed class was neither found in your dependencies, nor was it found in the analyzed files in your repository. If you are using some other form of dependency management, you might want to disable this analysis.