Skip to content

Commit

Permalink
prefer ->app rather than helper
Browse files Browse the repository at this point in the history
  • Loading branch information
knvpk committed Jan 2, 2016
1 parent 7be5a7a commit 332ac55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LaravelDebugbar.php
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ protected function selectStorage(DebugBar $debugbar)
break;
case 'custom':
$class = $config->get('debugbar.storage.provider');
$storage = app($class);
$storage = $this->app->make($class);
break;
case 'file':
default:
Expand Down

0 comments on commit 332ac55

Please sign in to comment.