From c4023a69ddfaeacb5f1a331806779a1a198598b7 Mon Sep 17 00:00:00 2001 From: Antoine Lamirault Date: Tue, 6 Feb 2024 19:52:08 +0100 Subject: [PATCH] Fix broken class links --- controller/value_resolver.rst | 4 ++-- mailer.rst | 2 +- workflow.rst | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/controller/value_resolver.rst b/controller/value_resolver.rst index 7509920bc04..094d8af4c35 100644 --- a/controller/value_resolver.rst +++ b/controller/value_resolver.rst @@ -222,8 +222,8 @@ In addition, some components, bridges and official bundles provide other value r PSR-7 Objects Resolver: Injects a Symfony HttpFoundation ``Request`` object created from a PSR-7 object - of type :class:`Psr\\Http\\Message\\ServerRequestInterface`, - :class:`Psr\\Http\\Message\\RequestInterface` or :class:`Psr\\Http\\Message\\MessageInterface`. + of type ``Psr\Http\Message\ServerRequestInterface``, + ``Psr\Http\Message\RequestInterface`` or ``Psr\Http\Message\MessageInterface``. It requires installing :doc:`the PSR-7 Bridge ` component. Managing Value Resolvers diff --git a/mailer.rst b/mailer.rst index b9ffa16332d..53b9d88b6f1 100644 --- a/mailer.rst +++ b/mailer.rst @@ -1474,7 +1474,7 @@ handler. ``$mailer->send($email)`` works as of Symfony 6.2. When sending an email asynchronously, its instance must be serializable. -This is always the case for :class:`Symfony\\Bridge\\Twig\\Mime\\Email` +This is always the case for :class:`Symfony\\Component\\Mailer\\Mailer` instances, but when sending a :class:`Symfony\\Bridge\\Twig\\Mime\\TemplatedEmail`, you must ensure that the ``context`` is serializable. If you have non-serializable variables, diff --git a/workflow.rst b/workflow.rst index 929a2aa9cbe..4dd3a3d618a 100644 --- a/workflow.rst +++ b/workflow.rst @@ -475,7 +475,7 @@ The context is accessible in all events except for the ``workflow.guard`` events .. deprecated:: 6.4 Gathering events context is deprecated since Symfony 6.4 and the - :method:`Symfony\\Component\\Workflow\\Event::getContext` method will be + :method:`Symfony\\Component\\Workflow\\Event\\Event::getContext` method will be removed in Symfony 7.0. .. note::