| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
||
| 25 | { |
||
| 26 | $response = $handler->handle($request); |
||
| 27 | $link = $this->urlGenerator->generate('debug/api/view', ['id' => $this->idGenerator->getId()]); |
||
| 28 | |||
| 29 | return $response |
||
| 30 | ->withHeader('X-Debug-Id', $this->idGenerator->getId()) |
||
| 31 | ->withHeader('X-Debug-Link', $link); |
||
| 32 | } |
||
| 34 |