From 3e4f5f4b771fbdc12a10db1694d55c7c91441161 Mon Sep 17 00:00:00 2001 From: Geoff Garbers Date: Fri, 16 Oct 2020 16:03:22 +0200 Subject: [PATCH] Fix config item referenced. (#34852) --- src/Illuminate/Queue/Console/BatchesTableCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Queue/Console/BatchesTableCommand.php b/src/Illuminate/Queue/Console/BatchesTableCommand.php index 2cad0521c444..1edee033e483 100644 --- a/src/Illuminate/Queue/Console/BatchesTableCommand.php +++ b/src/Illuminate/Queue/Console/BatchesTableCommand.php @@ -57,7 +57,7 @@ public function __construct(Filesystem $files, Composer $composer) */ public function handle() { - $table = $this->laravel['config']['queue.batches.table'] ?? 'job_batches'; + $table = $this->laravel['config']['queue.batching.table'] ?? 'job_batches'; $this->replaceMigration( $this->createBaseMigration($table), $table, Str::studly($table)