You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
172 lines
7.8 KiB
PHP
172 lines
7.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* This file is part of CodeIgniter Shield.
|
|
*
|
|
* (c) CodeIgniter Foundation <admin@codeigniter.com>
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
use Rector\Caching\ValueObject\Storage\FileCacheStorage;
|
|
use Rector\CodeQuality\Rector\BooleanAnd\SimplifyEmptyArrayCheckRector;
|
|
use Rector\CodeQuality\Rector\Class_\CompleteDynamicPropertiesRector;
|
|
use Rector\CodeQuality\Rector\Empty_\SimplifyEmptyCheckOnEmptyArrayRector;
|
|
use Rector\CodeQuality\Rector\Expression\InlineIfToExplicitIfRector;
|
|
use Rector\CodeQuality\Rector\Foreach_\UnusedForeachValueToArrayKeysRector;
|
|
use Rector\CodeQuality\Rector\FuncCall\ChangeArrayPushToArrayAssignRector;
|
|
use Rector\CodeQuality\Rector\FuncCall\SimplifyRegexPatternRector;
|
|
use Rector\CodeQuality\Rector\FuncCall\SimplifyStrposLowerRector;
|
|
use Rector\CodeQuality\Rector\FuncCall\SingleInArrayToCompareRector;
|
|
use Rector\CodeQuality\Rector\FunctionLike\SimplifyUselessVariableRector;
|
|
use Rector\CodeQuality\Rector\If_\CombineIfRector;
|
|
use Rector\CodeQuality\Rector\If_\ExplicitBoolCompareRector;
|
|
use Rector\CodeQuality\Rector\If_\ShortenElseIfRector;
|
|
use Rector\CodeQuality\Rector\If_\SimplifyIfElseToTernaryRector;
|
|
use Rector\CodeQuality\Rector\If_\SimplifyIfReturnBoolRector;
|
|
use Rector\CodeQuality\Rector\Ternary\TernaryEmptyArrayArrayDimFetchToCoalesceRector;
|
|
use Rector\CodeQuality\Rector\Ternary\UnnecessaryTernaryExpressionRector;
|
|
use Rector\CodingStyle\Rector\ClassMethod\FuncGetArgsToVariadicParamRector;
|
|
use Rector\CodingStyle\Rector\ClassMethod\MakeInheritedMethodVisibilitySameAsParentRector;
|
|
use Rector\CodingStyle\Rector\FuncCall\CountArrayToEmptyArrayComparisonRector;
|
|
use Rector\CodingStyle\Rector\FuncCall\VersionCompareFuncCallToConstantRector;
|
|
use Rector\Config\RectorConfig;
|
|
use Rector\DeadCode\Rector\Cast\RecastingRemovalRector;
|
|
use Rector\DeadCode\Rector\ClassMethod\RemoveUnusedPromotedPropertyRector;
|
|
use Rector\DeadCode\Rector\If_\UnwrapFutureCompatibleIfPhpVersionRector;
|
|
use Rector\DeadCode\Rector\Property\RemoveUnusedPrivatePropertyRector;
|
|
use Rector\EarlyReturn\Rector\Foreach_\ChangeNestedForeachIfsToEarlyContinueRector;
|
|
use Rector\EarlyReturn\Rector\If_\ChangeIfElseValueAssignToEarlyReturnRector;
|
|
use Rector\EarlyReturn\Rector\If_\RemoveAlwaysElseRector;
|
|
use Rector\EarlyReturn\Rector\Return_\PreparedValueToEarlyReturnRector;
|
|
use Rector\Php55\Rector\String_\StringClassNameToClassConstantRector;
|
|
use Rector\Php73\Rector\FuncCall\JsonThrowOnErrorRector;
|
|
use Rector\Php73\Rector\FuncCall\StringifyStrNeedlesRector;
|
|
use Rector\PHPUnit\AnnotationsToAttributes\Rector\Class_\AnnotationWithValueToAttributeRector;
|
|
use Rector\PHPUnit\CodeQuality\Rector\Class_\YieldDataProviderRector;
|
|
use Rector\PHPUnit\Set\PHPUnitSetList;
|
|
use Rector\Privatization\Rector\Property\PrivatizeFinalClassPropertyRector;
|
|
use Rector\Set\ValueObject\LevelSetList;
|
|
use Rector\Set\ValueObject\SetList;
|
|
use Rector\Strict\Rector\Empty_\DisallowedEmptyRuleFixerRector;
|
|
use Rector\Strict\Rector\If_\BooleanInIfConditionRuleFixerRector;
|
|
use Rector\TypeDeclaration\Rector\Empty_\EmptyOnNullableObjectToInstanceOfRector;
|
|
use Rector\ValueObject\PhpVersion;
|
|
|
|
return static function (RectorConfig $rectorConfig): void {
|
|
$rectorConfig->sets([
|
|
SetList::DEAD_CODE,
|
|
LevelSetList::UP_TO_PHP_74,
|
|
PHPUnitSetList::PHPUNIT_CODE_QUALITY,
|
|
PHPUnitSetList::PHPUNIT_100,
|
|
]);
|
|
|
|
$rectorConfig->parallel();
|
|
|
|
// Github action cache
|
|
$rectorConfig->cacheClass(FileCacheStorage::class);
|
|
if (is_dir('/tmp')) {
|
|
$rectorConfig->cacheDirectory('/tmp/rector');
|
|
}
|
|
|
|
// The paths to refactor (can also be supplied with CLI arguments)
|
|
$rectorConfig->paths([
|
|
__DIR__ . '/src/',
|
|
__DIR__ . '/tests/',
|
|
]);
|
|
|
|
// Include Composer's autoload - required for global execution, remove if running locally
|
|
$rectorConfig->autoloadPaths([
|
|
__DIR__ . '/vendor/autoload.php',
|
|
]);
|
|
|
|
// Do you need to include constants, class aliases, or a custom autoloader?
|
|
$rectorConfig->bootstrapFiles([
|
|
realpath(getcwd()) . '/vendor/codeigniter4/framework/system/Test/bootstrap.php',
|
|
]);
|
|
|
|
$rectorConfig->phpstanConfigs([
|
|
__DIR__ . '/phpstan.neon.dist',
|
|
__DIR__ . '/vendor/codeigniter/phpstan-codeigniter/extension.neon',
|
|
__DIR__ . '/vendor/phpstan/phpstan-strict-rules/rules.neon',
|
|
]);
|
|
|
|
// Set the target version for refactoring
|
|
$rectorConfig->phpVersion(PhpVersion::PHP_74);
|
|
|
|
// Auto-import fully qualified class names
|
|
$rectorConfig->importNames();
|
|
|
|
// Are there files or rules you need to skip?
|
|
$rectorConfig->skip([
|
|
__DIR__ . '/src/Views',
|
|
|
|
JsonThrowOnErrorRector::class,
|
|
StringifyStrNeedlesRector::class,
|
|
YieldDataProviderRector::class,
|
|
|
|
// Note: requires php 8
|
|
RemoveUnusedPromotedPropertyRector::class,
|
|
AnnotationWithValueToAttributeRector::class,
|
|
|
|
// May load view files directly when detecting classes
|
|
StringClassNameToClassConstantRector::class,
|
|
|
|
// Ignore tests that use CodeIgniter::CI_VERSION
|
|
UnwrapFutureCompatibleIfPhpVersionRector::class => [
|
|
__DIR__ . '/src/Test/MockInputOutput.php',
|
|
__DIR__ . '/tests/Commands/SetupTest.php',
|
|
__DIR__ . '/tests/Commands/UserModelGeneratorTest.php',
|
|
__DIR__ . '/tests/Controllers/LoginTest.php',
|
|
],
|
|
RemoveUnusedPrivatePropertyRector::class => [
|
|
__DIR__ . '/src/Test/MockInputOutput.php',
|
|
__DIR__ . '/tests/Commands/SetupTest.php',
|
|
__DIR__ . '/tests/Commands/UserModelGeneratorTest.php',
|
|
__DIR__ . '/tests/Controllers/LoginTest.php',
|
|
],
|
|
|
|
RecastingRemovalRector::class => [
|
|
// To check old Email Config file
|
|
__DIR__ . '/src/Commands/Setup.php',
|
|
],
|
|
]);
|
|
|
|
// auto import fully qualified class names
|
|
$rectorConfig->importNames();
|
|
|
|
$rectorConfig->rule(SimplifyUselessVariableRector::class);
|
|
$rectorConfig->rule(RemoveAlwaysElseRector::class);
|
|
$rectorConfig->rule(CountArrayToEmptyArrayComparisonRector::class);
|
|
$rectorConfig->rule(ChangeNestedForeachIfsToEarlyContinueRector::class);
|
|
$rectorConfig->rule(ChangeIfElseValueAssignToEarlyReturnRector::class);
|
|
$rectorConfig->rule(SimplifyStrposLowerRector::class);
|
|
$rectorConfig->rule(CombineIfRector::class);
|
|
$rectorConfig->rule(SimplifyIfReturnBoolRector::class);
|
|
$rectorConfig->rule(InlineIfToExplicitIfRector::class);
|
|
$rectorConfig->rule(PreparedValueToEarlyReturnRector::class);
|
|
$rectorConfig->rule(ShortenElseIfRector::class);
|
|
$rectorConfig->rule(SimplifyIfElseToTernaryRector::class);
|
|
$rectorConfig->rule(UnusedForeachValueToArrayKeysRector::class);
|
|
$rectorConfig->rule(ChangeArrayPushToArrayAssignRector::class);
|
|
$rectorConfig->rule(UnnecessaryTernaryExpressionRector::class);
|
|
$rectorConfig->rule(SimplifyRegexPatternRector::class);
|
|
$rectorConfig->rule(FuncGetArgsToVariadicParamRector::class);
|
|
$rectorConfig->rule(MakeInheritedMethodVisibilitySameAsParentRector::class);
|
|
$rectorConfig->rule(SimplifyEmptyArrayCheckRector::class);
|
|
$rectorConfig->rule(SimplifyEmptyCheckOnEmptyArrayRector::class);
|
|
$rectorConfig->rule(TernaryEmptyArrayArrayDimFetchToCoalesceRector::class);
|
|
$rectorConfig->rule(EmptyOnNullableObjectToInstanceOfRector::class);
|
|
$rectorConfig->rule(DisallowedEmptyRuleFixerRector::class);
|
|
$rectorConfig->rule(StringClassNameToClassConstantRector::class);
|
|
$rectorConfig->rule(PrivatizeFinalClassPropertyRector::class);
|
|
$rectorConfig->rule(CompleteDynamicPropertiesRector::class);
|
|
$rectorConfig->rule(BooleanInIfConditionRuleFixerRector::class);
|
|
$rectorConfig->rule(SingleInArrayToCompareRector::class);
|
|
$rectorConfig->rule(VersionCompareFuncCallToConstantRector::class);
|
|
$rectorConfig->rule(ExplicitBoolCompareRector::class);
|
|
};
|