Skip to content

Commit cae0a8d

Browse files
authored
Fix storage name when creating the storage instance (barryvdh#1143)
1 parent ef326fd commit cae0a8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LaravelDebugbar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1100,7 +1100,7 @@ protected function selectStorage(DebugBar $debugbar)
11001100
$class = $config->get('debugbar.storage.provider');
11011101
$storage = $this->app->make($class);
11021102
break;
1103-
case 'app':
1103+
case 'socket':
11041104
$hostname = $config->get('debugbar.storage.hostname', '127.0.0.1');
11051105
$port = $config->get('debugbar.storage.port', 2304);
11061106
$storage = new SocketStorage($hostname, $port);

0 commit comments

Comments
 (0)