Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | final class RoutingMiddleware implements MiddlewareInterface |
||
26 | { |
||
27 | |||
28 | /** |
||
29 | * Creates a RoutingMiddleware |
||
30 | * |
||
31 | * @param UrlMatcherInterface $matcher |
||
32 | */ |
||
33 | public function __construct( |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @inheritDoc |
||
41 | * @SuppressWarnings |
||
42 | */ |
||
43 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
||
52 |