Skip to content

Commit 07b001e

Browse files
committed
Merge branch '6.3' into 6.4
* 6.3: Fix list usage [Messenger] Make a list unordered
2 parents 0653ba0 + 58399cc commit 07b001e

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
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

http_client.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1047,8 +1047,8 @@ HTTP Compression
10471047

10481048
The HTTP header ``Accept-Encoding: gzip`` is added automatically if:
10491049

1050-
* When using cURL client: cURL was compiled with ZLib support (see ``php --ri curl``)
1051-
* When using the native HTTP client: `Zlib PHP extension`_ is installed
1050+
* using cURL client: cURL was compiled with ZLib support (see ``php --ri curl``)
1051+
* using the native HTTP client: `Zlib PHP extension`_ is installed
10521052

10531053
If the server does respond with a gzipped response, it's decoded transparently.
10541054
To disable HTTP compression, send an ``Accept-Encoding: identity`` HTTP header.

0 commit comments

Comments
 (0)