8000 applied suggestions from coding standard · symfony/symfony@1eb4c26 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1eb4c26

Browse files
committed
applied suggestions from coding standard
1 parent f18533d commit 1eb4c26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/Serializer/Tests/Normalizer/AbstractNormalizerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ public function testObjectWithVariadicConstructorTypedArguments(AbstractNormaliz
204204
/**
205205
* @dataProvider getNormalizer
206206
*/
207-
public function testVariadicSerializationWithPreservingKeys(AbstractNormalizer $normalizer): void
207+
public function testVariadicSerializationWithPreservingKeys(AbstractNormalizer $normalizer)
208208
{
209209
$d1 = new Dummy();
210210
$d1->foo = 'Foo';
@@ -216,7 +216,7 @@ public function testVariadicSerializationWithPreservingKeys(AbstractNormalizer $
216216
$d2->bar = 'BAR';
217217
$d2->baz = 'BAZ';
218218
$d2->qux = 'QUZ';
219-
$arr = ["d1" => $d1, "d2" => $d2];
219+
$arr = ['d1' => $d1, 'd2' => $d2];
220220
$obj = new VariadicConstructorTypedArgsDummy(...$arr);
221221

222222
$serializer = new Serializer([$normalizer], [new JsonEncoder()]);

0 commit comments

Comments
 (0)
0