Skip to content

Commit

Permalink
Fix CS/WS issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Dec 24, 2023
1 parent 98d4ebf commit c2ed518
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ObjectReflectorTest.php
Expand Up @@ -38,7 +38,7 @@ public function testReflectsAttributesOfObject(): void
'SebastianBergmann\ObjectReflector\TestFixture\ParentClass::protectedInParent' => 'protected',
'SebastianBergmann\ObjectReflector\TestFixture\ParentClass::publicInParent' => 'public',
],
$this->objectReflector->getProperties($o)
$this->objectReflector->getProperties($o),
);
}

Expand All @@ -50,7 +50,7 @@ public function testReflectsAttributeWithIntegerName(): void
[
1 => 2,
],
$this->objectReflector->getProperties($o)
$this->objectReflector->getProperties($o),
);
}
}

0 comments on commit c2ed518

Please sign in to comment.