From 98d97b0a575c67dcd30e1f77117aca446d376511 Mon Sep 17 00:00:00 2001 From: Sebastian Paczkowski <74934099+sebpacz@users.noreply.github.com> Date: Tue, 9 Feb 2021 19:56:46 +0100 Subject: [PATCH] [Messenger][CS] Add missing commas in PHP configurations --- messenger.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/messenger.rst b/messenger.rst index 83b7d59dff4..7f13eb0f4b0 100644 --- a/messenger.rst +++ b/messenger.rst @@ -975,8 +975,8 @@ The transport has a number of options: 'async_priority_low' => [ 'dsn' => '%env(MESSENGER_TRANSPORT_DSN)%', 'options' => [ - 'queue_name' => 'normal_priority' - ] + 'queue_name' => 'normal_priority', + ], ], ], ], @@ -1445,8 +1445,8 @@ Then, make sure to "route" your message to *both* transports: 'image_transport' => '...', ], 'routing' => [ - 'App\Message\UploadedImage' => ['image_transport', 'async_priority_normal'] - ] + 'App\Message\UploadedImage' => ['image_transport', 'async_priority_normal'], + ], ], ]);