Skip to content

Commit 019efe7

Browse files
Fix cs
1 parent 6d9a964 commit 019efe7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Rules/InternalTag/RestrictedInternalUsageHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function shouldBeReported(Scope $scope, string $name): bool
1515
$currentNamespace = $scope->getNamespace();
1616
if ($currentNamespace === null) {
1717
$classReflection = $scope->getClassReflection();
18-
if (null === $classReflection) {
18+
if ($classReflection === null) {
1919
return true;
2020
}
2121

0 commit comments

Comments
 (0)