Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Added line returns…
  • Loading branch information
mnapoli committed Nov 1, 2014
commit 629c8acb43a35a2bdb5bc9a9fb6ad0c4a61fad59
6 changes: 5 additions & 1 deletion components/serializer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,11 @@ which Encoders and Normalizer are going to be available::

$serializer = new Serializer($normalizers, $encoders);

There are several normalizers available, e.g. the :class:`Symfony\\Component\\Serializer\\Normalizer\\GetSetMethodNormalizer` or the :class:`Symfony\\Component\\Serializer\\Normalizer\\PropertyNormalizer`. To read more about them, refer to the "Normalizers" section in this page. All the examples shown below use the GetSetMethodNormalizer.
There are several normalizers available, e.g. the
:class:`Symfony\\Component\\Serializer\\Normalizer\\GetSetMethodNormalizer` or the
:class:`Symfony\\Component\\Serializer\\Normalizer\\PropertyNormalizer`.
To read more about them, refer to the "Normalizers" section in this page.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is just a minor issue, but I think it would be really great to link this to the "Normalizers" section.

All the examples shown below use the GetSetMethodNormalizer.

Serializing an Object
---------------------
Expand Down