8000 Fix Coding Standard issues · symfony/symfony@abe5f21 · GitHub
[go: up one dir, main page]

Skip to content

Commit abe5f21

Browse files
committed
Fix Coding Standard issues
1 parent 3dac0f8 commit abe5f21

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Symfony/Component/Serializer/Tests/SerializerTest.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -1232,19 +1232,19 @@ public function testNoCollectDenormalizationErrorsWithWrongEnum()
12321232
public function testGroupsOnClassSerialization()
12331233
{
12341234
$obj = new Fixtures\Attributes\GroupClassDummy();
1235-
$obj->setFoo("foo");
1236-
$obj->setBar("bar");
1235+
$obj->setFoo('foo');
1236+
$obj->setBar('bar');
12371237

12381238
$obj2 = new Fixtures\Annotations\GroupClassDummy();
1239-
$obj2->setFoo("foo");
1240-
$obj2->setBar("bar");
1239+
$obj2->setFoo('foo');
1240+
$obj2->setBar('bar');
12411241

12421242
$serializer = new Serializer(
12431243
[
1244-
new ObjectNormalizer()
1244+
new ObjectNormalizer(),
12451245
],
12461246
[
1247-
'json' => new JsonEncoder()
1247+
'json' => new JsonEncoder(),
12481248
]
12491249
);
12501250

0 commit comments

Comments
 (0)
0