mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 03:35:01 +01:00
5193d43b64
[NodeTypeResolver] Remove unnecessary loop SourceLocator collection on DynamicSourceLocatorProvider (#5852)
18 lines
1.1 KiB
PHP
18 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace RectorPrefix202405;
|
|
|
|
use Rector\CodeQuality\Rector\FuncCall\InlineIsAInstanceOfRector;
|
|
use Rector\CodeQuality\Rector\Identical\FlipTypeControlToUseExclusiveTypeRector;
|
|
use Rector\CodeQuality\Rector\Identical\GetClassToInstanceOfRector;
|
|
use Rector\Config\RectorConfig;
|
|
use Rector\DeadCode\Rector\If_\RemoveDeadInstanceOfRector;
|
|
use Rector\Instanceof_\Rector\Ternary\FlipNegatedTernaryInstanceofRector;
|
|
use Rector\TypeDeclaration\Rector\BooleanAnd\BinaryOpNullableToInstanceofRector;
|
|
use Rector\TypeDeclaration\Rector\Empty_\EmptyOnNullableObjectToInstanceOfRector;
|
|
use Rector\TypeDeclaration\Rector\While_\WhileNullableToInstanceofRector;
|
|
return static function (RectorConfig $rectorConfig) : void {
|
|
$rectorConfig->rules([EmptyOnNullableObjectToInstanceOfRector::class, GetClassToInstanceOfRector::class, InlineIsAInstanceOfRector::class, FlipTypeControlToUseExclusiveTypeRector::class, RemoveDeadInstanceOfRector::class, FlipNegatedTernaryInstanceofRector::class, BinaryOpNullableToInstanceofRector::class, WhileNullableToInstanceofRector::class]);
|
|
};
|