@@ -245,22 +245,22 @@ There are several types of normalizers available::
245
245
246
246
* The :class: `Symfony\\ Component\\ Serializer\\ Normalizer\\ GetSetMethodNormalizer `
247
247
248
- This normalizer reads the content of the class by calling the "getters" (public
249
- methods starting with "get"). It will denormalize data by calling the constructor
250
- and the "setters" (public methods starting with "set").
248
+ This normalizer reads the content of the class by calling the "getters" (public
249
+ methods starting with "get"). It will denormalize data by calling the constructor
250
+ and the "setters" (public methods starting with "set").
251
251
252
- Objects are serialized to a map of property names (method name stripped of the "get"
253
- prefix and converted to lower case) to property values.
252
+ Objects are serialized to a map of property names (method name stripped of the "get"
253
+ prefix and converted to lower case) to property values.
254
254
255
255
* The :class: `Symfony\\ Component\\ Serializer\\ Normalizer\\ PropertyNormalizer `
256
256
257
- .. versionadded :: 2.6
258
- The :class: `Symfony\\ Component\\ Serializer\\ Normalizer\\ PropertyNormalizer `
259
- class was introduced in Symfony 2.6.
257
+ .. versionadded :: 2.6
258
+ The :class: `Symfony\\ Component\\ Serializer\\ Normalizer\\ PropertyNormalizer `
259
+ class was introduced in Symfony 2.6.
260
260
261
- This normalizer directly reads and writes public properties as well as
262
- **private and protected ** properties. Objects are serialized to a map of
263
- property names to property values.
261
+ This normalizer directly reads and writes public properties as well as
262
+ **private and protected ** properties. Objects are serialized to a map of
263
+ property names to property values.
264
264
265
265
JMSSerializer
266
266
-------------
0 commit comments