mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-23 19:24:48 +01:00
5193d43b64
[NodeTypeResolver] Remove unnecessary loop SourceLocator collection on DynamicSourceLocatorProvider (#5852)
17 lines
862 B
PHP
17 lines
862 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace RectorPrefix202405;
|
|
|
|
use Rector\Config\RectorConfig;
|
|
use Rector\Php71\Rector\Assign\AssignArrayToStringRector;
|
|
use Rector\Php71\Rector\BinaryOp\BinaryOpBetweenNumberAndStringRector;
|
|
use Rector\Php71\Rector\BooleanOr\IsIterableRector;
|
|
use Rector\Php71\Rector\ClassConst\PublicConstantVisibilityRector;
|
|
use Rector\Php71\Rector\FuncCall\RemoveExtraParametersRector;
|
|
use Rector\Php71\Rector\List_\ListToArrayDestructRector;
|
|
use Rector\Php71\Rector\TryCatch\MultiExceptionCatchRector;
|
|
return static function (RectorConfig $rectorConfig) : void {
|
|
$rectorConfig->rules([IsIterableRector::class, MultiExceptionCatchRector::class, AssignArrayToStringRector::class, RemoveExtraParametersRector::class, BinaryOpBetweenNumberAndStringRector::class, ListToArrayDestructRector::class, PublicConstantVisibilityRector::class]);
|
|
};
|