Skip to content

Commit 691632c

Browse files
committed
Fix sytanx error
1 parent 9b5a09d commit 691632c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Rules/Functions/DebuggerFunctionRule.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
use PhpParser\Node;
66
use PhpParser\Node\Expr\FuncCall;
77
use PHPStan\Analyser\Scope;
8-
use PHPStan\Reflection\ReflectionProvider;
9-
use PHPStan\Rules\RuleErrorBuilder;
8+
use PHPStan\Type\VerbosityLevel;
109

1110
/**
1211
* @implements \PHPStan\Rules\Rule<\PhpParser\Node\Expr\FuncCall>
@@ -16,7 +15,7 @@ class DebuggerFunctionRule implements \PHPStan\Rules\Rule
1615

1716
public function getNodeType(): string
1817
{
19-
return FuncCall::class
18+
return FuncCall::class;
2019
}
2120

2221
public function processNode(Node $node, Scope $scope): array

0 commit comments

Comments
 (0)