Skip to content

Commit

Permalink
Update Debugbar.php
Browse files Browse the repository at this point in the history
  • Loading branch information
barryvdh committed Dec 21, 2015
1 parent 3faa57b commit 25ce905
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/Middleware/Debugbar.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ public function handle($request, Closure $next)
/** @var \Barryvdh\Debugbar\LaravelDebugbar $debugbar */
$debugbar = $this->app['debugbar'];

$debugbar->startMeasure('application', 'Application');

try {
/** @var \Illuminate\Http\Response $response */
$response = $next($request);
Expand All @@ -56,9 +54,6 @@ public function handle($request, Closure $next)
$response = $this->exceptionHandler->render($request, $e);
}

$debugbar->stopMeasure('application');
$debugbar->startMeasure('after', 'After application');

return $debugbar->modifyResponse($request, $response);

}
Expand Down

0 comments on commit 25ce905

Please sign in to comment.