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 symfony#15176 [Serializer] Standardize built-in normalizers lists (sarramegnag)
This PR was submitted for the 5.x branch but it was merged into the 5.2 branch instead.
Discussion
----------
[Serializer] Standardize built-in normalizers lists
See symfony#15077
Commits
-------
09b1c98 Standardize built-in normalizers lists
@@ -43,11 +43,13 @@ Symfony includes the following normalizers but you can also
43
43
* :class:`Symfony\\Component\\Serializer\\Normalizer\\GetSetMethodNormalizer` to
44
44
normalize PHP object using the getter and setter methods of the object;
45
45
* :class:`Symfony\\Component\\Serializer\\Normalizer\\PropertyNormalizer` to
46
-
normalize PHP object using `PHP reflection`_.
47
-
* :class:`Symfony\\Component\\Serializer\\Normalizer\\ConstraintViolationListNormalizer` for objects implementing the :class:`Symfony\\Component\\Validator\\ConstraintViolationListInterface` interface
46
+
normalize PHP object using `PHP reflection`_;
47
+
* :class:`Symfony\\Component\\Serializer\\Normalizer\\ConstraintViolationListNormalizer` for objects implementing the :class:`Symfony\\Component\\Validator\\ConstraintViolationListInterface` interface;
48
48
* :class:`Symfony\\Component\\Serializer\\Normalizer\\ProblemNormalizer` for :class:`Symfony\\Component\\ErrorHandler\\Exception\\FlattenException` objects
to deal with objects implementing the :phpclass:`JsonSerializable` interface
50
+
to deal with objects implementing the :phpclass:`JsonSerializable` interface;
51
+
* :class:`Symfony\\Component\\Serializer\\Normalizer\\UidNormalizer` converts objects that implement :class:`Symfony\\Component\\Uid\\AbstractUid` into strings and denormalizes uuid or ulid strings to :class:`Symfony\\Component\\Uid\\Uuid` or :class:`Symfony\\Component\\Uid\\Ulid`.
0 commit comments