Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
gennadigennadigennadi committed Mar 14, 2024
1 parent 0c65e71 commit 14f2248
Show file tree
Hide file tree
Showing 1,541 changed files with 24,225 additions and 17,459 deletions.
16 changes: 0 additions & 16 deletions .gitignore

This file was deleted.

4 changes: 2 additions & 2 deletions bin/deptrac
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env php
<?php
namespace DEPTRAC_202402;
namespace DEPTRAC_202403;

use DEPTRAC_202402\Composer\XdebugHandler\XdebugHandler;
use DEPTRAC_202403\Composer\XdebugHandler\XdebugHandler;
use Qossmic\Deptrac\Supportive\Console\Application;
if (\PHP_VERSION_ID < 80100) {
echo 'Required at least PHP version 8.1.0, your version: ' . \PHP_VERSION . "\n";
Expand Down
6 changes: 3 additions & 3 deletions config/cache.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php

declare (strict_types=1);
namespace DEPTRAC_202402;
namespace DEPTRAC_202403;

use Qossmic\Deptrac\Core\Ast\Parser\Cache\AstFileReferenceCacheInterface;
use Qossmic\Deptrac\Core\Ast\Parser\Cache\AstFileReferenceDeferredCacheInterface;
use Qossmic\Deptrac\Core\Ast\Parser\Cache\AstFileReferenceFileCache;
use Qossmic\Deptrac\Core\Ast\Parser\Cache\CacheableFileSubscriber;
use Qossmic\Deptrac\Supportive\Console\Application;
use DEPTRAC_202402\Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use function DEPTRAC_202402\Symfony\Component\DependencyInjection\Loader\Configurator\service;
use DEPTRAC_202403\Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use function DEPTRAC_202403\Symfony\Component\DependencyInjection\Loader\Configurator\service;
return static function (ContainerConfigurator $container) : void {
$services = $container->services();
$services->defaults()->public();
Expand Down
22 changes: 11 additions & 11 deletions config/services.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php

declare (strict_types=1);
namespace DEPTRAC_202402;
namespace DEPTRAC_202403;

use DEPTRAC_202402\PhpParser\Lexer;
use DEPTRAC_202402\PhpParser\Parser;
use DEPTRAC_202402\PhpParser\ParserFactory;
use DEPTRAC_202402\Psr\EventDispatcher\EventDispatcherInterface;
use DEPTRAC_202403\PhpParser\Lexer;
use DEPTRAC_202403\PhpParser\Parser;
use DEPTRAC_202403\PhpParser\ParserFactory;
use DEPTRAC_202403\Psr\EventDispatcher\EventDispatcherInterface;
use Qossmic\Deptrac\Contract\Analyser\EventHelper;
use Qossmic\Deptrac\Contract\Config\CollectorType;
use Qossmic\Deptrac\Contract\Config\EmitterType;
Expand Down Expand Up @@ -107,12 +107,12 @@
use Qossmic\Deptrac\Supportive\OutputFormatter\JUnitOutputFormatter;
use Qossmic\Deptrac\Supportive\OutputFormatter\TableOutputFormatter;
use Qossmic\Deptrac\Supportive\OutputFormatter\XMLOutputFormatter;
use DEPTRAC_202402\Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use DEPTRAC_202402\Symfony\Component\EventDispatcher\EventDispatcher;
use function DEPTRAC_202402\Symfony\Component\DependencyInjection\Loader\Configurator\param;
use function DEPTRAC_202402\Symfony\Component\DependencyInjection\Loader\Configurator\service;
use function DEPTRAC_202402\Symfony\Component\DependencyInjection\Loader\Configurator\tagged_iterator;
use function DEPTRAC_202402\Symfony\Component\DependencyInjection\Loader\Configurator\tagged_locator;
use DEPTRAC_202403\Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use DEPTRAC_202403\Symfony\Component\EventDispatcher\EventDispatcher;
use function DEPTRAC_202403\Symfony\Component\DependencyInjection\Loader\Configurator\param;
use function DEPTRAC_202403\Symfony\Component\DependencyInjection\Loader\Configurator\service;
use function DEPTRAC_202403\Symfony\Component\DependencyInjection\Loader\Configurator\tagged_iterator;
use function DEPTRAC_202403\Symfony\Component\DependencyInjection\Loader\Configurator\tagged_locator;
return static function (ContainerConfigurator $container) : void {
$services = $container->services();
$services->defaults()->autowire();
Expand Down
4 changes: 2 additions & 2 deletions deptrac.config.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace DEPTRAC_202402;
namespace DEPTRAC_202403;

use Internal\Qossmic\Deptrac\IgnoreDependenciesOnContract;
use Qossmic\Deptrac\Contract\Config\AnalyserConfig;
Expand All @@ -12,7 +12,7 @@
use Qossmic\Deptrac\Contract\Config\Formatter\GraphvizConfig;
use Qossmic\Deptrac\Contract\Config\Layer;
use Qossmic\Deptrac\Contract\Config\Ruleset;
use DEPTRAC_202402\Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use DEPTRAC_202403\Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
return static function (DeptracConfig $config, ContainerConfigurator $containerConfigurator) : void {
$services = $containerConfigurator->services();
$services->set(IgnoreDependenciesOnContract::class)->tag('kernel.event_subscriber');
Expand Down
Binary file added deptrac.phar
Binary file not shown.
4 changes: 4 additions & 0 deletions docs/debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ examples\Layer1\SomeClass
examples\Layer1\SomeClass2
```

This command exist with the return code 2 when it ran successfully, but there
were some tokens in the output. You can use this information in your CI
pipelines.

## `debug:dependencies`

With the `debug:dependencies`-command you can see all dependencies of your layer. You can optionally specify a target layer to get only dependencies from one layer to the other:
Expand Down
2 changes: 1 addition & 1 deletion src/Contract/Analyser/PostProcessEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare (strict_types=1);
namespace Qossmic\Deptrac\Contract\Analyser;

use DEPTRAC_202402\Symfony\Contracts\EventDispatcher\Event;
use DEPTRAC_202403\Symfony\Contracts\EventDispatcher\Event;
/**
* Event fired after the analysis is complete.
*
Expand Down
2 changes: 1 addition & 1 deletion src/Contract/Analyser/ProcessEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

use Qossmic\Deptrac\Contract\Ast\TokenReferenceInterface;
use Qossmic\Deptrac\Contract\Dependency\DependencyInterface;
use DEPTRAC_202402\Symfony\Contracts\EventDispatcher\Event;
use DEPTRAC_202403\Symfony\Contracts\EventDispatcher\Event;
/**
* Event that is triggered on every found dependency.
*
Expand Down
2 changes: 1 addition & 1 deletion src/Contract/Analyser/ViolationCreatingInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare (strict_types=1);
namespace Qossmic\Deptrac\Contract\Analyser;

use DEPTRAC_202402\Symfony\Component\EventDispatcher\EventSubscriberInterface;
use DEPTRAC_202403\Symfony\Component\EventDispatcher\EventSubscriberInterface;
/**
* Every rule that can create a Violation has to implement this interface.
*
Expand Down
2 changes: 1 addition & 1 deletion src/Contract/Ast/AstFileAnalysedEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare (strict_types=1);
namespace Qossmic\Deptrac\Contract\Ast;

use DEPTRAC_202402\Symfony\Contracts\EventDispatcher\Event;
use DEPTRAC_202403\Symfony\Contracts\EventDispatcher\Event;
/**
* Event triggered after parsing the AST of a file has been completed.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Contract/Ast/AstFileSyntaxErrorEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare (strict_types=1);
namespace Qossmic\Deptrac\Contract\Ast;

use DEPTRAC_202402\Symfony\Contracts\EventDispatcher\Event;
use DEPTRAC_202403\Symfony\Contracts\EventDispatcher\Event;
/**
* Event triggered when parsing the AST failed on syntax error in the PHP file.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Contract/Ast/PostCreateAstMapEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare (strict_types=1);
namespace Qossmic\Deptrac\Contract\Ast;

use DEPTRAC_202402\Symfony\Contracts\EventDispatcher\Event;
use DEPTRAC_202403\Symfony\Contracts\EventDispatcher\Event;
/**
* Event triggered after the AST map of all files has been created.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Contract/Ast/PreCreateAstMapEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare (strict_types=1);
namespace Qossmic\Deptrac\Contract\Ast;

use DEPTRAC_202402\Symfony\Contracts\EventDispatcher\Event;
use DEPTRAC_202403\Symfony\Contracts\EventDispatcher\Event;
/**
* Event triggered before the AST map and parsing of all files has started.
*/
Expand Down
6 changes: 3 additions & 3 deletions src/Contract/Config/DeptracConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
namespace Qossmic\Deptrac\Contract\Config;

use Qossmic\Deptrac\Contract\Config\Formatter\FormatterConfigInterface;
use DEPTRAC_202402\Symfony\Component\Config\Builder\ConfigBuilderInterface;
use DEPTRAC_202402\Symfony\Component\Yaml\Exception\ParseException;
use DEPTRAC_202402\Symfony\Component\Yaml\Yaml;
use DEPTRAC_202403\Symfony\Component\Config\Builder\ConfigBuilderInterface;
use DEPTRAC_202403\Symfony\Component\Yaml\Exception\ParseException;
use DEPTRAC_202403\Symfony\Component\Yaml\Yaml;
final class DeptracConfig implements ConfigBuilderInterface
{
private bool $ignoreUncoveredInternalClasses = \true;
Expand Down
2 changes: 1 addition & 1 deletion src/Contract/Dependency/PostEmitEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare (strict_types=1);
namespace Qossmic\Deptrac\Contract\Dependency;

use DEPTRAC_202402\Symfony\Contracts\EventDispatcher\Event;
use DEPTRAC_202403\Symfony\Contracts\EventDispatcher\Event;
/**
* Event triggered after all the dependencies have been resolved.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Contract/Dependency/PostFlattenEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare (strict_types=1);
namespace Qossmic\Deptrac\Contract\Dependency;

use DEPTRAC_202402\Symfony\Contracts\EventDispatcher\Event;
use DEPTRAC_202403\Symfony\Contracts\EventDispatcher\Event;
/**
* Event triggered after all the dependencies have been flattened.
*
Expand Down
2 changes: 1 addition & 1 deletion src/Contract/Dependency/PreEmitEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare (strict_types=1);
namespace Qossmic\Deptrac\Contract\Dependency;

use DEPTRAC_202402\Symfony\Contracts\EventDispatcher\Event;
use DEPTRAC_202403\Symfony\Contracts\EventDispatcher\Event;
/**
* Event triggered before all the dependencies have been resolved.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Contract/Dependency/PreFlattenEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare (strict_types=1);
namespace Qossmic\Deptrac\Contract\Dependency;

use DEPTRAC_202402\Symfony\Contracts\EventDispatcher\Event;
use DEPTRAC_202403\Symfony\Contracts\EventDispatcher\Event;
/**
* Event triggered before all the dependencies have been flattened.
*
Expand Down
2 changes: 1 addition & 1 deletion src/Contract/Layer/InvalidCollectorDefinitionException.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare (strict_types=1);
namespace Qossmic\Deptrac\Contract\Layer;

use DEPTRAC_202402\Psr\Container\ContainerExceptionInterface;
use DEPTRAC_202403\Psr\Container\ContainerExceptionInterface;
use Qossmic\Deptrac\Contract\ExceptionInterface;
use RuntimeException;
use function implode;
Expand Down
2 changes: 1 addition & 1 deletion src/Contract/OutputFormatter/OutputStyleInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare (strict_types=1);
namespace Qossmic\Deptrac\Contract\OutputFormatter;

use DEPTRAC_202402\Symfony\Component\Console\Helper\TableSeparator;
use DEPTRAC_202403\Symfony\Component\Console\Helper\TableSeparator;
/**
* Wrapper around Symfony OutputStyle.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Core/Analyser/DependencyLayersAnalyser.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare (strict_types=1);
namespace Qossmic\Deptrac\Core\Analyser;

use DEPTRAC_202402\Psr\EventDispatcher\EventDispatcherInterface;
use DEPTRAC_202403\Psr\EventDispatcher\EventDispatcherInterface;
use Qossmic\Deptrac\Contract\Analyser\AnalysisResult;
use Qossmic\Deptrac\Contract\Analyser\PostProcessEvent;
use Qossmic\Deptrac\Contract\Analyser\ProcessEvent;
Expand Down
2 changes: 1 addition & 1 deletion src/Core/Analyser/EventHandler/AllowDependencyHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

use Qossmic\Deptrac\Contract\Analyser\ProcessEvent;
use Qossmic\Deptrac\Contract\Result\Allowed;
use DEPTRAC_202402\Symfony\Component\EventDispatcher\EventSubscriberInterface;
use DEPTRAC_202403\Symfony\Component\EventDispatcher\EventSubscriberInterface;
/**
* @internal
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Core/Analyser/EventHandler/MatchingLayersHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace Qossmic\Deptrac\Core\Analyser\EventHandler;

use Qossmic\Deptrac\Contract\Analyser\ProcessEvent;
use DEPTRAC_202402\Symfony\Component\EventDispatcher\EventSubscriberInterface;
use DEPTRAC_202403\Symfony\Component\EventDispatcher\EventSubscriberInterface;
/**
* @internal
*/
Expand Down
4 changes: 2 additions & 2 deletions src/Core/Analyser/EventHandler/UncoveredDependentHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
declare (strict_types=1);
namespace Qossmic\Deptrac\Core\Analyser\EventHandler;

use DEPTRAC_202402\JetBrains\PHPStormStub\PhpStormStubsMap;
use DEPTRAC_202403\JetBrains\PHPStormStub\PhpStormStubsMap;
use Qossmic\Deptrac\Contract\Analyser\ProcessEvent;
use Qossmic\Deptrac\Contract\Result\Uncovered;
use Qossmic\Deptrac\Core\Ast\AstMap\ClassLike\ClassLikeToken;
use DEPTRAC_202402\Symfony\Component\EventDispatcher\EventSubscriberInterface;
use DEPTRAC_202403\Symfony\Component\EventDispatcher\EventSubscriberInterface;
/**
* @internal
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Qossmic\Deptrac\Contract\Analyser\EventHelper;
use Qossmic\Deptrac\Contract\Analyser\PostProcessEvent;
use Qossmic\Deptrac\Contract\Result\Error;
use DEPTRAC_202402\Symfony\Component\EventDispatcher\EventSubscriberInterface;
use DEPTRAC_202403\Symfony\Component\EventDispatcher\EventSubscriberInterface;
use function sprintf;
/**
* @internal
Expand Down
2 changes: 1 addition & 1 deletion src/Core/Ast/AstLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare (strict_types=1);
namespace Qossmic\Deptrac\Core\Ast;

use DEPTRAC_202402\Psr\EventDispatcher\EventDispatcherInterface;
use DEPTRAC_202403\Psr\EventDispatcher\EventDispatcherInterface;
use Qossmic\Deptrac\Contract\Ast\AstFileAnalysedEvent;
use Qossmic\Deptrac\Contract\Ast\AstFileSyntaxErrorEvent;
use Qossmic\Deptrac\Contract\Ast\CouldNotParseFileException;
Expand Down
2 changes: 1 addition & 1 deletion src/Core/Ast/AstMap/File/FileToken.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace Qossmic\Deptrac\Core\Ast\AstMap\File;

use Qossmic\Deptrac\Contract\Ast\TokenInterface;
use DEPTRAC_202402\Symfony\Component\Filesystem\Path;
use DEPTRAC_202403\Symfony\Component\Filesystem\Path;
final class FileToken implements TokenInterface
{
public readonly string $path;
Expand Down
2 changes: 1 addition & 1 deletion src/Core/Ast/Parser/Cache/CacheableFileSubscriber.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

use Qossmic\Deptrac\Contract\Ast\PostCreateAstMapEvent;
use Qossmic\Deptrac\Contract\Ast\PreCreateAstMapEvent;
use DEPTRAC_202402\Symfony\Component\EventDispatcher\EventSubscriberInterface;
use DEPTRAC_202403\Symfony\Component\EventDispatcher\EventSubscriberInterface;
class CacheableFileSubscriber implements EventSubscriberInterface
{
public function __construct(private readonly \Qossmic\Deptrac\Core\Ast\Parser\Cache\AstFileReferenceDeferredCacheInterface $deferredCache)
Expand Down
22 changes: 11 additions & 11 deletions src/Core/Ast/Parser/Extractors/AnnotationReferenceExtractor.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
declare (strict_types=1);
namespace Qossmic\Deptrac\Core\Ast\Parser\Extractors;

use DEPTRAC_202402\PhpParser\Comment\Doc;
use DEPTRAC_202402\PhpParser\Node;
use DEPTRAC_202402\PhpParser\Node\Expr\Variable;
use DEPTRAC_202402\PhpParser\Node\Stmt\ClassMethod;
use DEPTRAC_202402\PhpParser\Node\Stmt\Property;
use DEPTRAC_202402\PHPStan\PhpDocParser\Ast\PhpDoc\TemplateTagValueNode;
use DEPTRAC_202402\PHPStan\PhpDocParser\Lexer\Lexer;
use DEPTRAC_202402\PHPStan\PhpDocParser\Parser\ConstExprParser;
use DEPTRAC_202402\PHPStan\PhpDocParser\Parser\PhpDocParser;
use DEPTRAC_202402\PHPStan\PhpDocParser\Parser\TokenIterator;
use DEPTRAC_202402\PHPStan\PhpDocParser\Parser\TypeParser;
use DEPTRAC_202403\PhpParser\Comment\Doc;
use DEPTRAC_202403\PhpParser\Node;
use DEPTRAC_202403\PhpParser\Node\Expr\Variable;
use DEPTRAC_202403\PhpParser\Node\Stmt\ClassMethod;
use DEPTRAC_202403\PhpParser\Node\Stmt\Property;
use DEPTRAC_202403\PHPStan\PhpDocParser\Ast\PhpDoc\TemplateTagValueNode;
use DEPTRAC_202403\PHPStan\PhpDocParser\Lexer\Lexer;
use DEPTRAC_202403\PHPStan\PhpDocParser\Parser\ConstExprParser;
use DEPTRAC_202403\PHPStan\PhpDocParser\Parser\PhpDocParser;
use DEPTRAC_202403\PHPStan\PhpDocParser\Parser\TokenIterator;
use DEPTRAC_202403\PHPStan\PhpDocParser\Parser\TypeParser;
use Qossmic\Deptrac\Core\Ast\AstMap\ReferenceBuilder;
use Qossmic\Deptrac\Core\Ast\Parser\TypeResolver;
use Qossmic\Deptrac\Core\Ast\Parser\TypeScope;
Expand Down
6 changes: 3 additions & 3 deletions src/Core/Ast/Parser/Extractors/AnonymousClassExtractor.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
declare (strict_types=1);
namespace Qossmic\Deptrac\Core\Ast\Parser\Extractors;

use DEPTRAC_202402\PhpParser\Node;
use DEPTRAC_202402\PhpParser\Node\Name;
use DEPTRAC_202402\PhpParser\Node\Stmt\Class_;
use DEPTRAC_202403\PhpParser\Node;
use DEPTRAC_202403\PhpParser\Node\Name;
use DEPTRAC_202403\PhpParser\Node\Stmt\Class_;
use Qossmic\Deptrac\Core\Ast\AstMap\ReferenceBuilder;
use Qossmic\Deptrac\Core\Ast\Parser\TypeScope;
class AnonymousClassExtractor implements \Qossmic\Deptrac\Core\Ast\Parser\Extractors\ReferenceExtractorInterface
Expand Down
6 changes: 3 additions & 3 deletions src/Core/Ast/Parser/Extractors/ClassConstantExtractor.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
declare (strict_types=1);
namespace Qossmic\Deptrac\Core\Ast\Parser\Extractors;

use DEPTRAC_202402\PhpParser\Node;
use DEPTRAC_202402\PhpParser\Node\Expr\ClassConstFetch;
use DEPTRAC_202402\PhpParser\Node\Name;
use DEPTRAC_202403\PhpParser\Node;
use DEPTRAC_202403\PhpParser\Node\Expr\ClassConstFetch;
use DEPTRAC_202403\PhpParser\Node\Name;
use Qossmic\Deptrac\Core\Ast\AstMap\ReferenceBuilder;
use Qossmic\Deptrac\Core\Ast\Parser\TypeScope;
class ClassConstantExtractor implements \Qossmic\Deptrac\Core\Ast\Parser\Extractors\ReferenceExtractorInterface
Expand Down
2 changes: 1 addition & 1 deletion src/Core/Ast/Parser/Extractors/FunctionCallResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare (strict_types=1);
namespace Qossmic\Deptrac\Core\Ast\Parser\Extractors;

use DEPTRAC_202402\PhpParser\Node;
use DEPTRAC_202403\PhpParser\Node;
use Qossmic\Deptrac\Core\Ast\AstMap\ReferenceBuilder;
use Qossmic\Deptrac\Core\Ast\Parser\TypeResolver;
use Qossmic\Deptrac\Core\Ast\Parser\TypeScope;
Expand Down
2 changes: 1 addition & 1 deletion src/Core/Ast/Parser/Extractors/FunctionLikeExtractor.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare (strict_types=1);
namespace Qossmic\Deptrac\Core\Ast\Parser\Extractors;

use DEPTRAC_202402\PhpParser\Node;
use DEPTRAC_202403\PhpParser\Node;
use Qossmic\Deptrac\Core\Ast\AstMap\ReferenceBuilder;
use Qossmic\Deptrac\Core\Ast\Parser\TypeResolver;
use Qossmic\Deptrac\Core\Ast\Parser\TypeScope;
Expand Down
Loading

0 comments on commit 14f2248

Please sign in to comment.