| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | 1 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
|
| 32 | { |
||
| 33 | 1 | $route = $this->router->match($request); |
|
| 34 | 1 | $request = $request->withAttribute($this->attributeName, $route); |
|
| 35 | 1 | return $route->getHandler()->handle($request); |
|
| 36 | } |
||
| 37 | } |