56 lines
2.3 KiB
PHP
56 lines
2.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Rector\CodeQuality\Rector\Class_\CompleteDynamicPropertiesRector;
|
|
use Rector\CodeQuality\Rector\ClassMethod\InlineArrayReturnAssignRector;
|
|
use Rector\CodeQuality\Rector\Foreach_\ForeachItemsAssignToEmptyArrayToAssignRector;
|
|
use Rector\Config\RectorConfig;
|
|
use Rector\DeadCode\Rector\Assign\RemoveDoubleAssignRector;
|
|
use Rector\DeadCode\Rector\If_\RemoveUnusedNonEmptyArrayBeforeForeachRector;
|
|
use Rector\DeadCode\Rector\StaticCall\RemoveParentCallWithoutParentRector;
|
|
use Rector\Php80\Rector\FunctionLike\MixedTypeRector;
|
|
use Rector\Set\ValueObject\LevelSetList;
|
|
use Rector\Set\ValueObject\SetList;
|
|
use Rector\TypeDeclaration\Rector\ClassMethod\AddVoidReturnTypeWhereNoReturnRector;
|
|
use Rector\TypeDeclaration\Rector\ClassMethod\BoolReturnTypeFromStrictScalarReturnsRector;
|
|
use Rector\TypeDeclaration\Rector\ClassMethod\ParamTypeByMethodCallTypeRector;
|
|
use Rector\TypeDeclaration\Rector\ClassMethod\ReturnTypeFromReturnDirectArrayRector;
|
|
use Rector\TypeDeclaration\Rector\ClassMethod\ReturnTypeFromStrictBoolReturnExprRector;
|
|
use Rector\TypeDeclaration\Rector\ClassMethod\ReturnTypeFromStrictNewArrayRector;
|
|
use Rector\TypeDeclaration\Rector\ClassMethod\ReturnTypeFromStrictScalarReturnExprRector;
|
|
use Rector\TypeDeclaration\Rector\ClassMethod\ReturnTypeFromStrictTypedCallRector;
|
|
use Rector\TypeDeclaration\Rector\ClassMethod\ReturnUnionTypeRector;
|
|
use Rector\TypeDeclaration\Rector\ClassMethod\StrictArrayParamDimFetchRector;
|
|
use Rector\TypeDeclaration\Rector\ClassMethod\StrictStringParamConcatRector;
|
|
|
|
return static function (RectorConfig $rectorConfig): void {
|
|
$rectorConfig->paths([
|
|
__DIR__ . '/.',
|
|
]);
|
|
|
|
$rectorConfig->bootstrapFiles([
|
|
__DIR__.'/../../oxid-esales/oxideshop-ce/source/oxfunctions.php',
|
|
__DIR__.'/../../oxid-esales/oxideshop-ce/source/overridablefunctions.php',
|
|
]);
|
|
|
|
$rectorConfig->skip(
|
|
[
|
|
MixedTypeRector::class, // shouldn't remove argument annotations
|
|
]
|
|
);
|
|
|
|
// define sets of rules
|
|
$rectorConfig->sets([
|
|
LevelSetList::UP_TO_PHP_80, // lowest possible PHP version for this plugin is 8.0
|
|
SetList::TYPE_DECLARATION,
|
|
SetList::INSTANCEOF,
|
|
SetList::EARLY_RETURN,
|
|
SetList::DEAD_CODE,
|
|
SetList::CODE_QUALITY,
|
|
SetList::CODING_STYLE,
|
|
]);
|
|
|
|
$rectorConfig->importNames();
|
|
};
|