Skip to content

Commit 80efc88

Browse files
committed
minor symfony#18984 [Messenger] Make a list unordered (javiereguiluz)
This PR was merged into the 5.4 branch. Discussion ---------- [Messenger] Make a list unordered Unless there's a good reason to make it ordered, I think this list should be unordered: <img width="659" alt="" src="https://github.com/symfony/symfony-docs/assets/73419/008e91bc-1714-4390-ab4e-2c88fe90f3aa"> Commits ------- e4910bd [Messenger] Make a list unordered
2 parents 8822e37 + e4910bd commit 80efc88

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 :doc:`/messenger/dispatch_after_current_bus`.
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 :doc:`/messenger/dispatch_after_current_bus`.
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)