Skip to content

Commit 90ff798

Browse files
committed
minor #14942 [Messenger] [CS] Add missing commas in PHP configurations (sebpacz)
This PR was merged into the 4.4 branch. Discussion ---------- [Messenger] [CS] Add missing commas in PHP configurations <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `5.x` for features of unreleased versions). --> Commits ------- 98d97b0 [Messenger][CS] Add missing commas in PHP configurations
2 parents 7c69a0b + 98d97b0 commit 90ff798

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

messenger.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -975,8 +975,8 @@ The transport has a number of options:
975975
'async_priority_low' => [
976976
'dsn' => '%env(MESSENGER_TRANSPORT_DSN)%',
977977
'options' => [
978-
'queue_name' => 'normal_priority'
979-
]
978+
'queue_name' => 'normal_priority',
979+
],
980980
],
981981
],
982982
],
@@ -1445,8 +1445,8 @@ Then, make sure to "route" your message to *both* transports:
14451445
'image_transport' => '...',
14461446
],
14471447
'routing' => [
1448-
'App\Message\UploadedImage' => ['image_transport', 'async_priority_normal']
1449-
]
1448+
'App\Message\UploadedImage' => ['image_transport', 'async_priority_normal'],
1449+
],
14501450
],
14511451
]);
14521452

0 commit comments

Comments
 (0)