1 | <?php |
||
9 | class ExtractCommandFromRequestListener |
||
10 | { |
||
11 | public const API_RESPONDER_CONTROLLER = 'eps.req2cmd.action.api_responder'; |
||
12 | public const CMD_CLASS_PARAM = '_command_class'; |
||
13 | public const CMD_PARAM = '_command'; |
||
14 | private const CONTROLLER_PARAM = '_controller'; |
||
15 | |||
16 | /** |
||
17 | * @var CommandExtractorInterface |
||
18 | */ |
||
19 | private $extractor; |
||
20 | |||
21 | public function __construct(CommandExtractorInterface $extractor) |
||
25 | |||
26 | public function onKernelRequest(GetResponseEvent $event): void |
||
43 | } |
||
44 |