Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a06ad9a

Browse files
cordovalweaverryan
authored andcommitted
add comma madness and lowercasing W
1 parent 608fead commit a06ad9a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/serializer.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,15 +181,15 @@ method on the normalizer definition::
181181
As a final result, the deserializer uses the ``first_name`` attribute as if
182182
it were ``firstName`` and uses the ``getFirstName`` and ``setFirstName`` methods.
183183

184-
Using Callbacks to Serialize Properties With Object Instances
184+
Using Callbacks to Serialize Properties with Object Instances
185185
-------------------------------------------------------------
186186

187-
When serializing you can set a callback to format a specific object property.
187+
When serializing, you can set a callback to format a specific object property::
188188

189+
use Acme\Person;
189190
use Symfony\Component\Serializer\Encoder\JsonEncoder;
190191
use Symfony\Component\Serializer\Normalizer\GetSetMethodNormalizer;
191192
use Symfony\Component\Serializer\Serializer;
192-
use Acme\Person;
193193

194194
$encoder = new JsonEncoder();
195195
$normalizer = new GetSetMethodNormalizer();

0 commit comments

Comments
 (0)