@@ -247,22 +247,22 @@ There are several types of normalizers available::
247
247
248
248
* The :class: `Symfony\\ Component\\ Serializer\\ Normalizer\\ GetSetMethodNormalizer `
249
249
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").
253
253
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.
256
256
257
257
* The :class: `Symfony\\ Component\\ Serializer\\ Normalizer\\ PropertyNormalizer `
258
258
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.
262
262
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.
266
266
267
267
Handling Circular References
268
268
----------------------------
0 commit comments