From 78de6f66628019b7feaee639c69ef6d907745931 Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 23 Dec 2020 12:49:07 +0100 Subject: [PATCH] Minor: Fix quotes style(serializer): Fix quotes --- components/serializer.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/serializer.rst b/components/serializer.rst index 20d31fa8c0c..5c498cbf593 100644 --- a/components/serializer.rst +++ b/components/serializer.rst @@ -627,7 +627,7 @@ defines a ``Person`` entity with a ``firstName`` property: This custom mapping is used to convert property names when serializing and deserializing objects:: - $serialized = $serializer->serialize(new Person("Kévin"), 'json'); + $serialized = $serializer->serialize(new Person('Kévin'), 'json'); // {"customer_name": "Kévin"} Serializing Boolean Attributes