Total Complexity | 3 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class MercureCookieInjectorSubscriber implements EventSubscriberInterface |
||
11 | { |
||
12 | |||
13 | private $mercureJwtKey; |
||
14 | |||
15 | public static function getSubscribedEvents() |
||
16 | { |
||
17 | return [ |
||
18 | 'kernel.response' => 'onKernelResponse', |
||
19 | ]; |
||
20 | } |
||
21 | |||
22 | public function __construct(string $mercureJwtKey) |
||
25 | } |
||
26 | |||
27 | public function onKernelResponse(FilterResponseEvent $event) |
||
48 |