diff --git a/source/docs/v3/queues.blade.md b/source/docs/v3/queues.blade.md index 33efb2a..16fd4ef 100644 --- a/source/docs/v3/queues.blade.md +++ b/source/docs/v3/queues.blade.md @@ -35,11 +35,11 @@ To dispatch a job such that it will run centrally under all circumstances, creat ```jsx // queue.connections 'central' => [ - 'driver' => 'database', + 'driver' => 'database', 'table' => 'jobs', 'queue' => 'default', 'retry_after' => 90, - 'central' => true, // <--- + 'central' => true, // <--- ], ``` @@ -47,4 +47,4 @@ And use this connection like this: ```jsx dispatch(new SomeJob(...))->onConnection('central'); -``` \ No newline at end of file +```