File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
src/Symfony/Component/Serializer/Tests Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1232,19 +1232,19 @@ public function testNoCollectDenormalizationErrorsWithWrongEnum()
1232
1232
public function testGroupsOnClassSerialization ()
1233
1233
{
1234
1234
$ obj = new Fixtures \Attributes \GroupClassDummy ();
1235
- $ obj ->setFoo (" foo " );
1236
- $ obj ->setBar (" bar " );
1235
+ $ obj ->setFoo (' foo ' );
1236
+ $ obj ->setBar (' bar ' );
1237
1237
1238
1238
$ obj2 = new Fixtures \Annotations \GroupClassDummy ();
1239
- $ obj2 ->setFoo (" foo " );
1240
- $ obj2 ->setBar (" bar " );
1239
+ $ obj2 ->setFoo (' foo ' );
1240
+ $ obj2 ->setBar (' bar ' );
1241
1241
1242
1242
$ serializer = new Serializer (
1243
1243
[
1244
- new ObjectNormalizer ()
1244
+ new ObjectNormalizer (),
1245
1245
],
1246
1246
[
1247
- 'json ' => new JsonEncoder ()
1247
+ 'json ' => new JsonEncoder (),
1248
1248
]
1249
1249
);
1250
1250
You can’t perform that action at this time.
0 commit comments