Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
DeGraciaMathieu committed Nov 15, 2024
1 parent 208f6e9 commit 803eb61
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
use PhpParser\NodeTraverserInterface;
use PhpParser\NodeVisitor\ParentConnectingVisitor;
use App\Infrastructure\Analyze\Adapters\Jerowork\NativeDecliner;
use App\Infrastructure\Analyze\Adapters\Jerowork\Visitors\DetectClassTypeVisitor;
use Jerowork\ClassDependenciesParser\PhpParser\NodeVisitor\ParseClassFqnNodeVisitor;
use Jerowork\ClassDependenciesParser\PhpParser\NodeVisitor\ParseInlineFqnNodeVisitor;
use Jerowork\ClassDependenciesParser\PhpParser\NodeVisitor\ParseImportedFqnNodeVisitor;
Expand All @@ -27,6 +28,7 @@ public function createTraverser(array &$collectors): NodeTraverserInterface
$traverser->addVisitor(new ParentConnectingVisitor());
$traverser->addVisitor(new ParseClassFqnNodeVisitor($collectors['dependencies']));
$traverser->addVisitor(new ParseImportedFqnNodeVisitor($collectors['dependencies']));
$traverser->addVisitor(new DetectClassTypeVisitor($collectors['type']));
$traverser->addVisitor(new ParseInlineFqnNodeVisitor(
$collectors['dependencies'],
[
Expand Down

0 comments on commit 803eb61

Please sign in to comment.