Skip to content

Commit 7b89b06

Browse files
committed
Merge branch '4.4' into 5.2
* 4.4: [Messenger][CS] Add missing commas [Mercure] Make the command compatible with ZSH
2 parents 78a6c77 + 7dcdecf commit 7b89b06

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

mercure.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ On Linux and Mac, run the following command to start it:
7575

7676
.. rst-class:: command-linux
7777

78-
$ SERVER_NAME=:3000 MERCURE_PUBLISHER_JWT_KEY="!ChangeMe!" MERCURE_SUBSCRIBER_JWT_KEY="!ChangeMe!" ./mercure run -config Caddyfile.dev
78+
$ SERVER_NAME=:3000 MERCURE_PUBLISHER_JWT_KEY='!ChangeMe!' MERCURE_SUBSCRIBER_JWT_KEY='!ChangeMe!' ./mercure run -config Caddyfile.dev
7979

8080
On Windows run:
8181

messenger.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1027,7 +1027,7 @@ your Envelope::
10271027

10281028
$attributes = [];
10291029
$bus->dispatch(new SmsNotification(), [
1030-
new AmqpStamp('custom-routing-key', AMQP_NOPARAM, $attributes)
1030+
new AmqpStamp('custom-routing-key', AMQP_NOPARAM, $attributes),
10311031
]);
10321032

10331033
.. caution::
@@ -1722,12 +1722,12 @@ to your message::
17221722
{
17231723
$bus->dispatch(new SmsNotification('...'), [
17241724
// wait 5 seconds before processing
1725-
new DelayStamp(5000)
1725+
new DelayStamp(5000),
17261726
]);
17271727

17281728
// or explicitly create an Envelope
17291729
$bus->dispatch(new Envelope(new SmsNotification('...'), [
1730-
new DelayStamp(5000)
1730+
new DelayStamp(5000),
17311731
]));
17321732

17331733
// ...

0 commit comments

Comments
 (0)