Skip to content

Commit a4ca889

Browse files
committed
fix cs
1 parent cb7304d commit a4ca889

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Type/Nette/JsonDecodeDynamicReturnTypeExtension.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
use PhpParser\Node\Arg;
77
use PhpParser\Node\Expr\ClassConstFetch;
88
use PhpParser\Node\Expr\StaticCall;
9+
use PhpParser\Node\Identifier;
910
use PhpParser\Node\Name;
1011
use PHPStan\Analyser\Scope;
1112
use PHPStan\Reflection\MethodReflection;
@@ -91,7 +92,7 @@ private function isForceArray(array $args): bool
9192
$classConstFetch = $secondArg->value;
9293

9394
if ($classConstFetch->class instanceof Name) {
94-
if (! $classConstFetch->name instanceof \PhpParser\Node\Identifier) {
95+
if (! $classConstFetch->name instanceof Identifier) {
9596
return false;
9697
}
9798

0 commit comments

Comments
 (0)