Support the ongoing development of Laravel.io →
posted 6 years ago
Laravel
/**
     * 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?

Last updated 2 years ago.
0

I couldn't figure out where it had changed the properties...

192.168.1.1

Last updated 6 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

seth-shi seth-shi Joined 1 Jun 2018

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.