We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 068f4b3 commit c5c9889Copy full SHA for c5c9889
2 files changed
tests/unit/PseudoTypes/FalseTest.php
@@ -49,5 +49,7 @@ public function testCanBeInstantiatedUsingDeprecatedFqsen() : void
49
$false = new \phpDocumentor\Reflection\Types\False_();
50
51
$this->assertSame('false', (string) $false);
52
+ $this->assertInstanceOf(False_::class, $false);
53
+ $this->assertInstanceOf(\phpDocumentor\Reflection\Types\False_::class, $false);
54
}
55
tests/unit/PseudoTypes/TrueTest.php
$true = new \phpDocumentor\Reflection\Types\True_();
$this->assertSame('true', (string) $true);
+ $this->assertInstanceOf(True_::class, $true);
+ $this->assertInstanceOf(\phpDocumentor\Reflection\Types\True_::class, $true);
0 commit comments