File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -1681,7 +1681,7 @@ during a request::
1681
1681
namespace App\Tests\Controller;
1682
1682
1683
1683
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
1684
- use Symfony\Component\Messenger\Transport\InMemoryTransport;
1684
+ use Symfony\Component\Messenger\Transport\InMemory\ InMemoryTransport;
1685
1685
1686
1686
class DefaultControllerTest extends WebTestCase
1687
1687
{
@@ -1698,6 +1698,12 @@ during a request::
1698
1698
}
1699
1699
}
1700
1700
1701
+ .. versionadded :: 6.3
1702
+
1703
+ The namespace of the ``InMemoryTransport `` class changed in Symfony 6.3 from
1704
+ ``Symfony\\Component\\Messenger\\Transport\\InMemoryTransport `` to
1705
+ ``Symfony\\Component\\Messenger\\Transport\\InMemory\\InMemoryTransport ``.
1706
+
1701
1707
The transport has a number of options:
1702
1708
1703
1709
``serialize `` (boolean, default: ``false ``)
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ Here is a simplified example of a database transport::
126
126
127
127
The implementation above is not runnable code but illustrates how a
128
128
:class: `Symfony\\ Component\\ Messenger\\ Transport\\ TransportInterface ` could
129
- be implemented. For real implementations see :class: `Symfony\\ Component\\ Messenger\\ Transport\\ InMemoryTransport `
129
+ be implemented. For real implementations see :class: `Symfony\\ Component\\ Messenger\\ Transport\\ InMemory \\ InMemoryTransport `
130
130
and :class: `Symfony\\ Component\\ Messenger\\ Bridge\\ Doctrine\\ Transport\\ DoctrineReceiver `.
131
131
132
132
Register your Factory
You can’t perform that action at this time.
0 commit comments