Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
37 | public function process(ServerRequestInterface $request, Delegate $delegate): ResponseInterface |
||
38 | { |
||
39 | $response = $delegate->next($request); |
||
40 | foreach ($this->cookies->all() as $cookie) { |
||
41 | $response = $response->withAddedHeader('set-cookie', (string)$cookie); |
||
42 | } |
||
43 | |||
44 | return $response; |
||
45 | } |
||
46 | |||
48 | } |