diff --git a/tests/ObjectReflectorTest.php b/tests/ObjectReflectorTest.php index fa83564..8292b07 100644 --- a/tests/ObjectReflectorTest.php +++ b/tests/ObjectReflectorTest.php @@ -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), ); } @@ -50,7 +50,7 @@ public function testReflectsAttributeWithIntegerName(): void [ 1 => 2, ], - $this->objectReflector->getProperties($o) + $this->objectReflector->getProperties($o), ); } }