From 20367902b88bf1ba168c6f7ce051f82df94a0e18 Mon Sep 17 00:00:00 2001 From: AymDev Date: Thu, 17 Feb 2022 15:20:32 +0100 Subject: [PATCH] Fix broken link to DoctrineReceiver in Messenger Updates the FQCN for DoctrineReceiver as the class moved in a Bridge namespace after Symfony 6.0 --- messenger/custom-transport.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messenger/custom-transport.rst b/messenger/custom-transport.rst index ae15b15bbeb..e496fcf6263 100644 --- a/messenger/custom-transport.rst +++ b/messenger/custom-transport.rst @@ -127,7 +127,7 @@ Here is a simplified example of a database transport:: The implementation above is not runnable code but illustrates how a :class:`Symfony\\Component\\Messenger\\Transport\\TransportInterface` could be implemented. For real implementations see :class:`Symfony\\Component\\Messenger\\Transport\\InMemoryTransport` -and :class:`Symfony\\Component\\Messenger\\Transport\\Doctrine\\DoctrineReceiver`. +and :class:`Symfony\\Component\\Messenger\\Bridge\\Doctrine\\Transport\\DoctrineReceiver`. Register your Factory ---------------------