Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 49 additions & 2 deletions components/serializer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -801,8 +801,55 @@ The Serializer component provides several built-in normalizers:
You can also create your own Normalizer to use another structure. Read more at
:doc:`/serializer/custom_normalizer`.

All these normalizers are enabled by default when using the Serializer component
in a Symfony application.
Certain normalizers are enabled by default when using the Serializer component
in a Symfony application, additional ones can be enabled by tagging them with
:ref:`serializer.normalizer <reference-dic-tags-serializer-normalizer>`.

Here is an example of how to enable the built-in
:class:`Symfony\\Component\\Serializer\\Normalizer\\GetSetMethodNormalizer`, a
faster alternative to the
:class:`Symfony\\Component\\Serializer\\Normalizer\\ObjectNormalizer`:

.. configuration-block::

.. code-block:: yaml

# config/services.yaml
services:
get_set_method_normalizer:
class: Symfony\Component\Serializer\Normalizer\GetSetMethodNormalizer
tags: [serializer.normalizer]

.. code-block:: xml

<!-- config/services.xml -->
<?xml version="1.0" encoding="UTF-8" ?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services
https://symfony.com/schema/dic/services/services-1.0.xsd">

<services>
<service id="get_set_method_normalizer" class="Symfony\Component\Serializer\Normalizer\GetSetMethodNormalizer">
<tag name="serializer.normalizer"/>
</service>
</services>
</container>

.. code-block:: php

// config/services.php
namespace Symfony\Component\DependencyInjection\Loader\Configurator;

use Symfony\Component\Serializer\Normalizer\GetSetMethodNormalizer;

return function(ContainerConfigurator $configurator) {
$services = $configurator->services();

$services->set('get_set_method_normalizer', GetSetMethodNormalizer::class)
->tag('serializer.normalizer')
;
};

.. _component-serializer-encoders:

Expand Down
47 changes: 0 additions & 47 deletions serializer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,53 +79,6 @@ possible to set the priority of the tag in order to decide the matching order.
``DateTime`` or ``DateTimeImmutable`` classes to avoid excessive memory
usage and exposing internal details.

Here is an example on how to load the built-in
:class:`Symfony\\Component\\Serializer\\Normalizer\\GetSetMethodNormalizer`, a
faster alternative to the `ObjectNormalizer` when data objects always use
getters (``getXxx()``), issers (``isXxx()``) or hassers (``hasXxx()``) to read
properties and setters (``setXxx()``) to change properties:

.. configuration-block::

.. code-block:: yaml

# config/services.yaml
services:
get_set_method_normalizer:
class: Symfony\Component\Serializer\Normalizer\GetSetMethodNormalizer
tags: [serializer.normalizer]

.. code-block:: xml

<!-- config/services.xml -->
<?xml version="1.0" encoding="UTF-8" ?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services
https://symfony.com/schema/dic/services/services-1.0.xsd">

<services>
<service id="get_set_method_normalizer" class="Symfony\Component\Serializer\Normalizer\GetSetMethodNormalizer">
<tag name="serializer.normalizer"/>
</service>
</services>
</container>

.. code-block:: php

// config/services.php
namespace Symfony\Component\DependencyInjection\Loader\Configurator;

use Symfony\Component\Serializer\Normalizer\GetSetMethodNormalizer;

return function(ContainerConfigurator $configurator) {
$services = $configurator->services();

$services->set('get_set_method_normalizer', GetSetMethodNormalizer::class)
->tag('serializer.normalizer')
;
};

.. _serializer-using-serialization-groups-annotations:

Using Serialization Groups Annotations
Expand Down