We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f28bc9b commit 036d01bCopy full SHA for 036d01b
messenger.rst
@@ -859,7 +859,7 @@ your Envelope::
859
860
$attributes = [];
861
$bus->dispatch(new SmsNotification(), [
862
- new AmqpStamp('custom-routing-key', AMQP_NOPARAM, $attributes)
+ new AmqpStamp('custom-routing-key', AMQP_NOPARAM, $attributes),
863
]);
864
865
.. caution::
@@ -1483,12 +1483,12 @@ to your message::
1483
{
1484
$bus->dispatch(new SmsNotification('...'), [
1485
// wait 5 seconds before processing
1486
- new DelayStamp(5000)
+ new DelayStamp(5000),
1487
1488
1489
// or explicitly create an Envelope
1490
$bus->dispatch(new Envelope(new SmsNotification('...'), [
1491
1492
]));
1493
1494
// ...
0 commit comments