{
$controller = array(
'controller' => $request->request->get('controller'),
'action' => $request->request->get('action'),
);
return // LuckyController::indexAction
})->before(function (Request $request) {
if (0 === strpos($request->headers->get('Content-Type'), 'application/json')) {
$data = json_decode($request->getContent(), true);
$request->request->replace(is_array($data) ? $data : array());
}
});
где тебе его надо вызвать? вообще по роуту он сам вызовится
Обсуждают сегодня