You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
minor #13327 Add missing normalizers introduced between 3.4 and 4.4 (l-vo)
This PR was submitted for the master branch but it was merged into the 4.4 branch instead (closes#13327).
Discussion
----------
Add missing normalizers introduced between 3.4 and 4.4
Commits
-------
08be095 Add missing normalizers introduced between 3.4 and 4.4
Copy file name to clipboardExpand all lines: serializer.rst
+2
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,8 @@ As well as the following normalizers:
69
69
to deal with objects implementing the :phpclass:`JsonSerializable` interface
70
70
* :class:`Symfony\\Component\\Serializer\\Normalizer\\ArrayDenormalizer` to
71
71
denormalize arrays of objects using a format like `MyObject[]` (note the `[]` suffix)
72
+
* :class:`Symfony\\Component\\Serializer\\Normalizer\\ConstraintViolationListNormalizer` for objects implementing the :class:`Symfony\\Component\\Validator\\ConstraintViolationListInterface` interface
73
+
* :class:`Symfony\\Component\\Serializer\\Normalizer\\ProblemNormalizer` for :class:`Symfony\\Component\\ErrorHandler\\Exception\\FlattenException` objects
* :class:`Symfony\\Component\\Serializer\\Normalizer\\GetSetMethodNormalizer` to
33
34
normalize PHP object using the getter and setter methods of the object;
34
35
* :class:`Symfony\\Component\\Serializer\\Normalizer\\PropertyNormalizer` to
35
36
normalize PHP object using `PHP reflection`_.
37
+
* :class:`Symfony\\Component\\Serializer\\Normalizer\\ConstraintViolationListNormalizer` for objects implementing the :class:`Symfony\\Component\\Validator\\ConstraintViolationListInterface` interface
38
+
* :class:`Symfony\\Component\\Serializer\\Normalizer\\ProblemNormalizer` for :class:`Symfony\\Component\\ErrorHandler\\Exception\\FlattenException` objects
0 commit comments