Skip to content

Commit f5a4c86

Browse files
committed
Remove :void in test function signatures
1 parent 3b14b7f commit f5a4c86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/Extractor/ObjectPropertyListExtractorTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
class ObjectPropertyListExtractorTest extends TestCase
1919
{
20-
public function testGetPropertiesWithoutObjectClassResolver(): void
20+
public function testGetPropertiesWithoutObjectClassResolver()
2121
{
2222
$object = new \stdClass();
2323
$context = ['bar' => true];
@@ -35,7 +35,7 @@ public function testGetPropertiesWithoutObjectClassResolver(): void
3535
);
3636
}
3737

38-
public function testGetPropertiesWithObjectClassResolver(): void
38+
public function testGetPropertiesWithObjectClassResolver()
3939
{
4040
$object = new \stdClass();
4141
$classResolver = function ($objectArg) use ($object): string {

0 commit comments

Comments
 (0)