1 | <?php |
||
10 | class PaginationParamRequestListener implements EventSubscriberInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var PaginationOptionsFactory |
||
14 | */ |
||
15 | private $factory; |
||
16 | |||
17 | /** |
||
18 | * @param PaginationOptionsFactory $factory |
||
19 | */ |
||
20 | 4 | public function __construct(PaginationOptionsFactory $factory) |
|
24 | |||
25 | /** |
||
26 | * @param GetResponseEvent $event |
||
27 | */ |
||
28 | 4 | public function onKernelRequest(GetResponseEvent $event) |
|
46 | |||
47 | 2 | public static function getSubscribedEvents() |
|
53 | } |
||
54 |