Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a3242e2

Browse files
committed
minor #18520 [Messenger] Remove remaining deprecations (alexandre-daubois)
This PR was merged into the 7.0 branch. Discussion ---------- [Messenger] Remove remaining deprecations Part of #18507 (comment) Some Messenger removed deprecations doesn't appear in the doc (like `StopWorkerOnSigtermSignalListener `). So this should take care of what's remaining for this component 🙂 Commits ------- 8840871 [Messenger] Remove remaining deprecations
2 parents 1f29f14 + 8840871 commit a3242e2

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

messenger.rst

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1718,12 +1718,6 @@ during a request::
17181718
}
17191719
}
17201720

1721-
.. versionadded:: 6.3
1722-
1723-
The namespace of the ``InMemoryTransport`` class changed in Symfony 6.3 from
1724-
``Symfony\Component\Messenger\Transport\InMemoryTransport`` to
1725-
``Symfony\Component\Messenger\Transport\InMemory\InMemoryTransport``.
1726-
17271721
The transport has a number of options:
17281722

17291723
``serialize`` (boolean, default: ``false``)
@@ -2020,12 +2014,6 @@ A single handler class can handle multiple messages. For that add the
20202014
}
20212015
}
20222016

2023-
.. deprecated:: 6.2
2024-
2025-
Implementing the :class:`Symfony\\Component\\Messenger\\Handler\\MessageSubscriberInterface`
2026-
is another way to handle multiple messages with one handler class. This
2027-
interface was deprecated in Symfony 6.2.
2028-
20292017
Binding Handlers to Different Transports
20302018
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20312019

messenger/multiple_buses.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,6 @@ you can restrict each handler to a specific bus using the ``messenger.message_ha
133133
services:
134134
App\MessageHandler\SomeCommandHandler:
135135
tags: [{ name: messenger.message_handler, bus: command.bus }]
136-
# prevent handlers from being registered twice (or you can remove
137-
# the MessageHandlerInterface that autoconfigure uses to find handlers)
138-
autoconfigure: false
139136
140137
.. code-block:: xml
141138

0 commit comments

Comments
 (0)