Skip to content

Commit

Permalink
revert get_class() to ::class
Browse files Browse the repository at this point in the history
  • Loading branch information
verfriemelt-dot-org committed Jul 9, 2023
1 parent 41008cc commit a60fe76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Test/TestExtractor.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function __invoke(): iterable
throw new ShouldNotHappenException();
}

$reflectedTest = $this->reflectTest($test::class);
$reflectedTest = $this->reflectTest(get_class($test));
if ($reflectedTest !== null) {
yield $reflectedTest;
}
Expand Down

0 comments on commit a60fe76

Please sign in to comment.