We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adb3144 commit dcda06fCopy full SHA for dcda06f
src/Illuminate/Bus/BusServiceProvider.php
@@ -46,8 +46,8 @@ protected function registerBatchServices()
46
$this->app->singleton(DatabaseBatchRepository::class, function ($app) {
47
return new DatabaseBatchRepository(
48
$app->make(BatchFactory::class),
49
- $app->make('db')->connection(config('queue.batching.database')),
50
- config('queue.batching.table', 'job_batches')
+ $app->make('db')->connection($app->config->get('queue.batching.database')),
+ $app->config->get('queue.batching.table', 'job_batches')
51
);
52
});
53
}
0 commit comments