Skip to content

Commit

Permalink
applied suggestions from coding standard
Browse files Browse the repository at this point in the history
  • Loading branch information
melya committed Mar 6, 2023
1 parent f18533d commit 1eb4c26
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -204,7 +204,7 @@ public function testObjectWithVariadicConstructorTypedArguments(AbstractNormaliz
/**
* @dataProvider getNormalizer
*/
public function testVariadicSerializationWithPreservingKeys(AbstractNormalizer $normalizer): void
public function testVariadicSerializationWithPreservingKeys(AbstractNormalizer $normalizer)
{
$d1 = new Dummy();
$d1->foo = 'Foo';
Expand All @@ -216,7 +216,7 @@ public function testVariadicSerializationWithPreservingKeys(AbstractNormalizer $
$d2->bar = 'BAR';
$d2->baz = 'BAZ';
$d2->qux = 'QUZ';
$arr = ["d1" => $d1, "d2" => $d2];
$arr = ['d1' => $d1, 'd2' => $d2];
$obj = new VariadicConstructorTypedArgsDummy(...$arr);

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

0 comments on commit 1eb4c26

Please sign in to comment.