Skip to content

Commit

Permalink
Fix config item referenced. (#34852)
Browse files Browse the repository at this point in the history
  • Loading branch information
garbetjie committed Oct 16, 2020
1 parent 11d7470 commit 3e4f5f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Queue/Console/BatchesTableCommand.php
Expand Up @@ -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)
Expand Down

0 comments on commit 3e4f5f4

Please sign in to comment.