1 | <?php |
||
8 | trait CrudsRequestCheckerTrait |
||
9 | { |
||
10 | /** @return RouterInterface */ |
||
11 | abstract protected function getRouter(); |
||
12 | |||
13 | /** |
||
14 | * @param KernelEvent $event |
||
15 | * |
||
16 | * @return bool |
||
17 | */ |
||
18 | 12 | protected function checkRequest(KernelEvent $event) |
|
32 | |||
33 | 12 | protected function getRoute(KernelEvent $event) |
|
44 | } |
||
45 |