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 9b5a09d commit 691632cCopy full SHA for 691632c
src/Rules/Functions/DebuggerFunctionRule.php
@@ -5,8 +5,7 @@
5
use PhpParser\Node;
6
use PhpParser\Node\Expr\FuncCall;
7
use PHPStan\Analyser\Scope;
8
-use PHPStan\Reflection\ReflectionProvider;
9
-use PHPStan\Rules\RuleErrorBuilder;
+use PHPStan\Type\VerbosityLevel;
10
11
/**
12
* @implements \PHPStan\Rules\Rule<\PhpParser\Node\Expr\FuncCall>
@@ -16,7 +15,7 @@ class DebuggerFunctionRule implements \PHPStan\Rules\Rule
16
15
17
public function getNodeType(): string
18
{
19
- return FuncCall::class
+ return FuncCall::class;
20
}
21
22
public function processNode(Node $node, Scope $scope): array
0 commit comments