Skip to content

Commit 23ac566

Browse files
committed
Fix CS
1 parent a481ec6 commit 23ac566

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/PHPStan/Reflection/ClassReflectionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ public function testEnumIsFinal(): void
334334
$reflectionProvider = $this->createReflectionProvider();
335335
$enum = $reflectionProvider->getClass('PHPStan\Fixture\TestEnum');
336336
$this->assertTrue($enum->isEnum());
337-
$this->assertInstanceOf('ReflectionEnum', $enum->getNativeReflection());
337+
$this->assertInstanceOf(ReflectionEnum::class, $enum->getNativeReflection());
338338
$this->assertTrue($enum->isFinal());
339339
$this->assertTrue($enum->isFinalByKeyword());
340340
}

0 commit comments

Comments
 (0)