Skip to content

Commit 4e355d7

Browse files
committed
Merge branch '5.2' into 5.x
* 5.2: [Messenger][CS] Add missing comma in PHP configuration [Messenger][CS] Add missing commas in PHP configurations
2 parents 50a437a + 2a18443 commit 4e355d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

messenger.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -922,7 +922,7 @@ options. Options can be passed to the transport via a DSN string or configuratio
922922
'dsn' => '%env(MESSENGER_TRANSPORT_DSN)%',
923923
'options' => [
924924
'auto_setup' => false,
925-
]
925+
],
926926
],
927927
],
928928
],
@@ -1736,8 +1736,8 @@ Then, make sure to "route" your message to *both* transports:
17361736
'image_transport' => '...',
17371737
],
17381738
'routing' => [
1739-
'App\Message\UploadedImage' => ['image_transport', 'async_priority_normal']
1740-
]
1739+
'App\Message\UploadedImage' => ['image_transport', 'async_priority_normal'],
1740+
],
17411741
],
17421742
]);
17431743

0 commit comments

Comments
 (0)