Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
21 | 1 | public function process(ServerRequestInterface $request, DelegateInterface $delegate): ResponseInterface |
|
22 | { |
||
23 | 1 | $request = $this->sessionProcessor->processRequest($request); |
|
24 | 1 | $response = $delegate->process($request); |
|
25 | 1 | return $this->sessionProcessor->processResponse($request, $response); |
|
26 | } |
||
27 | } |
||
28 |