Added local driver as default

This commit is contained in:
Alex Renoki 2020-09-04 12:00:04 +03:00
parent 037500004d
commit 0cb0e6c3b7
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ class WebSocketsServiceProvider extends ServiceProvider
}); });
$this->app->singleton(StatisticsDriver::class, function () { $this->app->singleton(StatisticsDriver::class, function () {
$driver = config('websockets.statistics.driver'); $driver = config('websockets.statistics.driver', 'local');
return $this->app->make( return $this->app->make(
config( config(