Recca0120\LaravelTracy\Middleware\Dispatch::dispatchContent PHP Метод

dispatchContent() защищенный Метод

dispatchContent.
protected dispatchContent ( Illuminate\Http\Request $request, Closure $next ) : Response
$request Illuminate\Http\Request
$next Closure
Результат Symfony\Component\HttpFoundation\Response
    protected function dispatchContent($request, $next)
    {
        $this->storeWrapper->start();
        $this->debugbar->dispatchContent();
        $response = $this->debugbar->render($next($request));
        $this->storeWrapper->store()->close();
        return $response;
    }