Skip to content

Commit 6843c51

Browse files
committed
Merge branch '5.4' into 6.3
* 5.4: [Messenger] Make a list unordered
2 parents 24120b1 + 80efc88 commit 6843c51

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

components/messenger.rst

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -142,26 +142,26 @@ through the transport layer, use the ``SerializerStamp`` stamp::
142142

143143
Here are some important envelope stamps that are shipped with the Symfony Messenger:
144144

145-
#. :class:`Symfony\\Component\\Messenger\\Stamp\\DelayStamp`,
146-
to delay handling of an asynchronous message.
147-
#. :class:`Symfony\\Component\\Messenger\\Stamp\\DispatchAfterCurrentBusStamp`,
148-
to make the message be handled after the current bus has executed. Read more
149-
at :ref:`messenger-transactional-messages`.
150-
#. :class:`Symfony\\Component\\Messenger\\Stamp\\HandledStamp`,
151-
a stamp that marks the message as handled by a specific handler.
152-
Allows accessing the handler returned value and the handler name.
153-
#. :class:`Symfony\\Component\\Messenger\\Stamp\\ReceivedStamp`,
154-
an internal stamp that marks the message as received from a transport.
155-
#. :class:`Symfony\\Component\\Messenger\\Stamp\\SentStamp`,
156-
a stamp that marks the message as sent by a specific sender.
157-
Allows accessing the sender FQCN and the alias if available from the
158-
:class:`Symfony\\Component\\Messenger\\Transport\\Sender\\SendersLocator`.
159-
#. :class:`Symfony\\Component\\Messenger\\Stamp\\SerializerStamp`,
160-
to configure the serialization groups used by the transport.
161-
#. :class:`Symfony\\Component\\Messenger\\Stamp\\ValidationStamp`,
162-
to configure the validation groups used when the validation middleware is enabled.
163-
#. :class:`Symfony\\Component\\Messenger\\Stamp\\ErrorDetailsStamp`,
164-
an internal stamp when a message fails due to an exception in the handler.
145+
* :class:`Symfony\\Component\\Messenger\\Stamp\\DelayStamp`,
146+
to delay handling of an asynchronous message.
147+
* :class:`Symfony\\Component\\Messenger\\Stamp\\DispatchAfterCurrentBusStamp`,
148+
to make the message be handled after the current bus has executed. Read more
149+
at :ref:`messenger-transactional-messages`.
150+
* :class:`Symfony\\Component\\Messenger\\Stamp\\HandledStamp`,
151+
a stamp that marks the message as handled by a specific handler.
152+
Allows accessing the handler returned value and the handler name.
153+
* :class:`Symfony\\Component\\Messenger\\Stamp\\ReceivedStamp`,
154+
an internal stamp that marks the message as received from a transport.
155+
* :class:`Symfony\\Component\\Messenger\\Stamp\\SentStamp`,
156+
a stamp that marks the message as sent by a specific sender.
157+
Allows accessing the sender FQCN and the alias if available from the
158+
:class:`Symfony\\Component\\Messenger\\Transport\\Sender\\SendersLocator`.
159+
* :class:`Symfony\\Component\\Messenger\\Stamp\\SerializerStamp`,
160+
to configure the serialization groups used by the transport.
161+
* :class:`Symfony\\Component\\Messenger\\Stamp\\ValidationStamp`,
162+
to configure the validation groups used when the validation middleware is enabled.
163+
* :class:`Symfony\\Component\\Messenger\\Stamp\\ErrorDetailsStamp`,
164+
an internal stamp when a message fails due to an exception in the handler.
165165

166166
.. note::
167167

0 commit comments

Comments
 (0)