1 | <?php declare(strict_types = 1); |
||
10 | class RoutingMiddleware implements HttpMiddlewareInterface |
||
11 | { |
||
12 | /** @var RouterInterface */ |
||
13 | private $router; |
||
14 | |||
15 | /** @var callable */ |
||
16 | private $fallbackController; |
||
17 | |||
18 | 3 | public function __construct( |
|
26 | |||
27 | 2 | public function process(ServerRequestInterface $request, DelegateInterface $delegate) : ResponseInterface |
|
45 | } |
||
46 |