Skip to content

Commit

Permalink
Merge branch '4.3' into 4.4
Browse files Browse the repository at this point in the history
* 4.3:
  Use `::class` constants instead of `__NAMESPACE__` when possible
  • Loading branch information
nicolas-grekas committed Dec 16, 2019
2 parents c2f5dcb + 72d7dcd commit a046263
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Caster/ReflectionCasterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public function testClosureCasterExcludingVerbosity()

public function testReflectionParameter()
{
$var = new \ReflectionParameter(__NAMESPACE__.'\reflectionParameterFixture', 0);
$var = new \ReflectionParameter(reflectionParameterFixture::class, 0);

$this->assertDumpMatchesFormat(
<<<'EOTXT'
Expand Down

0 comments on commit a046263

Please sign in to comment.