Skip to content

Commit

Permalink
Fix storage name when creating the storage instance (#1143)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpociot authored Jan 6, 2021
1 parent ef326fd commit cae0a8d
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 @@ -1100,7 +1100,7 @@ protected function selectStorage(DebugBar $debugbar)
$class = $config->get('debugbar.storage.provider');
$storage = $this->app->make($class);
break;
case 'app':
case 'socket':
$hostname = $config->get('debugbar.storage.hostname', '127.0.0.1');
$port = $config->get('debugbar.storage.port', 2304);
$storage = new SocketStorage($hostname, $port);
Expand Down

0 comments on commit cae0a8d

Please sign in to comment.