Skip to content

Commit

Permalink
[rector] Rector fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Dec 12, 2024
1 parent d3df81d commit 8ac6aa8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Collectors/Callable_/CallableTypeCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace TomasVotruba\UnusedPublic\Collectors\Callable_;

use PhpParser\Node\Expr\Array_;
use PhpParser\Node;
use PhpParser\Node\Expr;
use PHPStan\Analyser\Scope;
Expand All @@ -26,7 +27,7 @@ public function __construct(

public function getNodeType(): string
{
return Expr\Array_::class;
return Array_::class;
}

/**
Expand Down

0 comments on commit 8ac6aa8

Please sign in to comment.