Skip to content

Commit 6868a19

Browse files
committed
Updated the rendering of the list
1 parent 4815c4a commit 6868a19

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

components/serializer.rst

+11-11
Original file line numberDiff line numberDiff line change
@@ -247,22 +247,22 @@ There are several types of normalizers available::
247247

248248
* The :class:`Symfony\\Component\\Serializer\\Normalizer\\GetSetMethodNormalizer`
249249

250-
This normalizer reads the content of the class by calling the "getters" (public
251-
methods starting with "get"). It will denormalize data by calling the constructor
252-
and the "setters" (public methods starting with "set").
250+
This normalizer reads the content of the class by calling the "getters" (public
251+
methods starting with "get"). It will denormalize data by calling the constructor
252+
and the "setters" (public methods starting with "set").
253253

254-
Objects are serialized to a map of property names (method name stripped of the "get"
255-
prefix and converted to lower case) to property values.
254+
Objects are serialized to a map of property names (method name stripped of the "get"
255+
prefix and converted to lower case) to property values.
256256

257257
* The :class:`Symfony\\Component\\Serializer\\Normalizer\\PropertyNormalizer`
258258

259-
.. versionadded:: 2.6
260-
The :class:`Symfony\\Component\\Serializer\\Normalizer\\PropertyNormalizer`
261-
class was introduced in Symfony 2.6.
259+
.. versionadded:: 2.6
260+
The :class:`Symfony\\Component\\Serializer\\Normalizer\\PropertyNormalizer`
261+
class was introduced in Symfony 2.6.
262262

263-
This normalizer directly reads and writes public properties as well as
264-
**private and protected** properties. Objects are serialized to a map of
265-
property names to property values.
263+
This normalizer directly reads and writes public properties as well as
264+
**private and protected** properties. Objects are serialized to a map of
265+
property names to property values.
266266

267267
Handling Circular References
268268
----------------------------

0 commit comments

Comments
 (0)