Е
public function handle($request)
{
try {
$request->enableHttpMethodParameterOverride();
$response = $this->sendRequestThroughRouter($request);
} catch (Throwable $e) {
$this->reportException($e);
$response = $this->renderException($request, $e);
}
$this->app['events']->dispatch(
new RequestHandled($request, $response)
);
return $response;
}
пытаюсь запустить через xDebug, поставил точку останова здесь:
$response = $this->sendRequestThroughRouter($request);
но не получается добраться до контроллеров.
по идее в этой точке запускаются все посредники модели контроллеры
т.е. если пошагово проходить построчно, то до контроллеров не получается добраться, почему так?