diff --git a/CHANGELOG.md b/CHANGELOG.md index a9dcc7278..96a0e568d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,8 @@ Improvements: - Skip parent parameters on complete constructor #2471 @mamazu - Support generics on `@mixin` #2463 - Remove "on develop warning" service #2533 + - Disable the processing of includes/requires, it doesn't work very well but + it has massive performance impact on certain projects. Bug fixes: diff --git a/lib/WorseReflection/Core/ServiceLocator.php b/lib/WorseReflection/Core/ServiceLocator.php index aac7fa52f..76031565e 100644 --- a/lib/WorseReflection/Core/ServiceLocator.php +++ b/lib/WorseReflection/Core/ServiceLocator.php @@ -13,7 +13,6 @@ use Phpactor\WorseReflection\Core\Inference\Walker\DiagnosticsWalker; use Phpactor\WorseReflection\Core\Inference\Walker\PassThroughWalker; use Phpactor\WorseReflection\Core\Inference\Walker\FunctionLikeWalker; -use Phpactor\WorseReflection\Core\Inference\Walker\IncludeWalker; use Phpactor\WorseReflection\Core\Inference\Walker\VariableWalker; use Phpactor\WorseReflection\Core\Inference\NodeToTypeConverter; use Phpactor\WorseReflection\Core\Inference\NodeContextResolver;