From fd8b11ec70edc9ae38060f9465882c89ae72fde4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Wed, 14 Apr 2021 17:41:08 +0200 Subject: [PATCH] fix formatting --- source/docs/v3/queues.blade.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 +```