Skip to content

Commit 5f26515

Browse files
committed
minor symfony#14738 Minor: Fix quotes (simon-watiau)
This PR was submitted for the 5.2 branch but it was merged into the 4.4 branch instead. Discussion ---------- Minor: Fix quotes style(serializer): Fix quotes <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `5.x` for features of unreleased versions). --> Commits ------- 78de6f6 Minor: Fix quotes
2 parents 396c09c + 78de6f6 commit 5f26515

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/serializer.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ defines a ``Person`` entity with a ``firstName`` property:
627627
This custom mapping is used to convert property names when serializing and
628628
deserializing objects::
629629

630-
$serialized = $serializer->serialize(new Person("Kévin"), 'json');
630+
$serialized = $serializer->serialize(new Person('Kévin'), 'json');
631631
// {"customer_name": "Kévin"}
632632

633633
Serializing Boolean Attributes

0 commit comments

Comments
 (0)