From a1647c609f11b860abf7de38aadb261fbbf9122a Mon Sep 17 00:00:00 2001 From: HypeMC Date: Tue, 18 Mar 2025 23:37:06 +0100 Subject: [PATCH] [Serializer] Add missing space + fix import --- serializer.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/serializer.rst b/serializer.rst index 5c82e6e566a..1c30ad89c6c 100644 --- a/serializer.rst +++ b/serializer.rst @@ -1377,7 +1377,7 @@ Built-in Normalizers ~~~~~~~~~~~~~~~~~~~~ Besides the normalizers registered by default (see previous section), the -serializer component also provides some extra normalizers.You can register +serializer component also provides some extra normalizers. You can register these by defining a service and tag it with :ref:`serializer.normalizer `. For instance, to use the ``CustomNormalizer`` you have to define a service like: @@ -1421,7 +1421,7 @@ like: .. code-block:: php // config/services.php - namespace Symfony\Component\DependencyInjection\Loader\Configurator; + namespace Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; use Symfony\Component\Serializer\Normalizer\CustomNormalizer;