/**
* Send the given request through the middleware / router.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
protected function sendRequestThroughRouter($request)
{
$this->app->instance('request', $request);
Facade::clearResolvedInstance('request');
$this->bootstrap();
return (new Pipeline($this->app))
->send($request)
->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
->then($this->dispatchToRouter());
}
I looked at it from the start and didn't see where the code had changed the properties of the Facade. Why should it be clear here? What's the impact?
I couldn't figure out where it had changed the properties...
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community