Skip to content

Commit

Permalink
Don't restrict Response/Request
Browse files Browse the repository at this point in the history
Fixes #2
  • Loading branch information
barryvdh committed Sep 6, 2013
1 parent 62278cf commit bf3bd4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Barryvdh/Debugbar/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public function provides()
protected function addListener(){

$app = $this->app;
$this->app['router']->after(function (Request $request, Response $response) use($app)
$this->app['router']->after(function ($request, $response) use($app)
{
if(
$app['config']->get('laravel-debugbar::config.enabled') === false
Expand Down

0 comments on commit bf3bd4d

Please sign in to comment.