-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Closed
Labels
SerializerhasPRA Pull Request has already been submitted for this issue.A Pull Request has already been submitted for this issue.
Description
There are a few arguments in code examples that were missed:
Converting Property Names when Serializing and Deserializing
$json = $serializer->serialize($obj);
// {"org_name": "Acme Inc.", "org_address": "123 Main Street, Big City"}
$objCopy = $serializer->deserialize($json);
It should looks like:
$json = $serializer->serialize($obj, 'json');
// {"org_name": "Acme Inc.", "org_address": "123 Main Street, Big City"}
$objCopy = $serializer->deserialize($json, Company::class, 'json');
Metadata
Metadata
Assignees
Labels
SerializerhasPRA Pull Request has already been submitted for this issue.A Pull Request has already been submitted for this issue.