File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ On Linux and Mac, run the following command to start it:
75
75
76
76
.. rst-class :: command-linux
77
77
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
79
79
80
80
On Windows run:
81
81
Original file line number Diff line number Diff line change @@ -1060,7 +1060,7 @@ your Envelope::
1060
1060
1061
1061
$attributes = [];
1062
1062
$bus->dispatch(new SmsNotification(), [
1063
- new AmqpStamp('custom-routing-key', AMQP_NOPARAM, $attributes)
1063
+ new AmqpStamp('custom-routing-key', AMQP_NOPARAM, $attributes),
1064
1064
]);
1065
1065
1066
1066
.. caution ::
@@ -1133,7 +1133,7 @@ Beanstalkd Transport
1133
1133
1134
1134
The Beanstalkd transport was introduced in Symfony 5.2.
1135
1135
1136
- The Beanstalkd transports sends messages directly to a Beanstalkd work queue. Install
1136
+ The Beanstalkd transport sends messages directly to a Beanstalkd work queue. Install
1137
1137
it by running:
1138
1138
1139
1139
.. code-block :: terminal
@@ -1771,12 +1771,12 @@ to your message::
1771
1771
{
1772
1772
$bus->dispatch(new SmsNotification('...'), [
1773
1773
// wait 5 seconds before processing
1774
- new DelayStamp(5000)
1774
+ new DelayStamp(5000),
1775
1775
]);
1776
1776
1777
1777
// or explicitly create an Envelope
1778
1778
$bus->dispatch(new Envelope(new SmsNotification('...'), [
1779
- new DelayStamp(5000)
1779
+ new DelayStamp(5000),
1780
1780
]));
1781
1781
1782
1782
// ...
You can’t perform that action at this time.
0 commit comments