Total Complexity | 3 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
15 | class RequestListener implements EventSubscriberInterface |
||
16 | { |
||
17 | /** |
||
18 | * @var ContainerInterface |
||
19 | */ |
||
20 | protected $container; |
||
21 | |||
22 | /** |
||
23 | * RequestListener constructor. |
||
24 | * |
||
25 | * @param ContainerInterface $container |
||
26 | */ |
||
27 | 1 | public function __construct(ContainerInterface $container) |
|
28 | { |
||
29 | 1 | $this->container = $container; |
|
30 | 1 | } |
|
31 | |||
32 | 1 | public function onKernelRequest() |
|
35 | 1 | } |
|
36 | |||
37 | /** |
||
38 | * @return array |
||
39 | */ |
||
40 | 1 | public static function getSubscribedEvents(): array |
|
44 | ]; |
||
45 | } |
||
47 |