dispatchContent() public method

dispatch.
public dispatchContent ( ) : string
return string
Example #1
0
 /**
  * dispatchContent.
  *
  * @method dispatchContent
  *
  * @param \Illuminate\Http\Request $request
  * @param \Closure                 $next
  *
  * @return \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;
 }