1 | <?php declare(strict_types = 1); |
||
16 | final class AddCookieToResponse implements Middleware |
||
17 | { |
||
18 | |||
19 | /** |
||
20 | * @var CookieJar |
||
21 | */ |
||
22 | private $cookies; |
||
23 | |||
24 | /** |
||
25 | * AddCookieToResponse constructor. |
||
26 | * |
||
27 | * @param CookieJar $cookies |
||
28 | */ |
||
29 | public function __construct(CookieJar $cookies) |
||
33 | |||
34 | /** |
||
35 | * @inheritDoc |
||
36 | */ |
||
37 | public function process(ServerRequestInterface $request, Delegate $delegate): ResponseInterface |
||
46 | |||
47 | |||
48 | } |