mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-20 15:08:11 +01:00
dfe158e2da
* [DX] Add TypeToStaticCall * [DX] Add ClassConstantRename * [DX] Add IssetUnsetToMethodCall * [DX] Add MethodToYield * drop unamtained shopware sets * [DX] Add RenamedAnnotationInType * [DX] Add MethodCallWrap * [DX] Add RenamedProperty * [DX] Add StringToClassConstant * [DX] Add ArgumentSwap * simplify rename function rector * [DX] Add RemovedFunctionArgument * [DX] Add MethodCallToService * [DX] Add UnprefixedMethodToGetSet * [DX] Add PseudoNamespaceToNamespaceRector * [DX] Add FunctionArgumentSwap * [DX] Add StaticCallToFunction * [DX] Add ParentCallToProperty * [DX] Add ParentDependency * [DX] Add CallWithParamRename * [DX] Added MethodCallRenameWithAddedArguments * [DX] Add PropertyToMethodCall * [DX] Add PropertyToMethodCall * [rector] [DX] Add PropertyToMethodCall * [cs] [DX] Add PropertyToMethodCall Co-authored-by: rector-bot <tomas@getrector.org>
76 lines
2.8 KiB
PHP
76 lines
2.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Rector\CodingStyle\Rector\ClassMethod\ReturnArrayClassMethodToYieldRector;
|
|
use Rector\CodingStyle\Rector\String_\SplitStringClassConstantToClassConstFetchRector;
|
|
use Rector\CodingStyle\ValueObject\MethodToYield;
|
|
use Rector\Core\Configuration\Option;
|
|
use Rector\DeadCode\Rector\ClassConst\RemoveUnusedClassConstantRector;
|
|
use Rector\Php55\Rector\String_\StringClassNameToClassConstantRector;
|
|
use Rector\Set\ValueObject\SetList;
|
|
use function Rector\SymfonyPhpConfig\inline_value_objects;
|
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
|
|
|
return static function (ContainerConfigurator $containerConfigurator): void {
|
|
$services = $containerConfigurator->services();
|
|
|
|
$services->set(ReturnArrayClassMethodToYieldRector::class)
|
|
->call('configure', [[
|
|
ReturnArrayClassMethodToYieldRector::METHODS_TO_YIELDS => inline_value_objects([
|
|
new MethodToYield(TestCase::class, 'provideData'),
|
|
new MethodToYield(TestCase::class, 'provideData*'),
|
|
new MethodToYield(TestCase::class, 'dataProvider'),
|
|
new MethodToYield(TestCase::class, 'dataProvider*'),
|
|
]),
|
|
]]);
|
|
|
|
$parameters = $containerConfigurator->parameters();
|
|
|
|
$parameters->set(Option::SETS, [
|
|
SetList::CODING_STYLE,
|
|
SetList::CODE_QUALITY,
|
|
SetList::DEAD_CODE,
|
|
SetList::NETTE_UTILS_CODE_QUALITY,
|
|
SetList::SOLID,
|
|
SetList::PRIVATIZATION,
|
|
SetList::NAMING,
|
|
SetList::ORDER,
|
|
SetList::DEFLUENT,
|
|
]);
|
|
|
|
$parameters->set(Option::PATHS, [
|
|
__DIR__ . '/src',
|
|
__DIR__ . '/rules',
|
|
__DIR__ . '/packages',
|
|
__DIR__ . '/tests',
|
|
__DIR__ . '/utils',
|
|
__DIR__ . '/compiler/src',
|
|
__DIR__ . '/compiler/bin/compile',
|
|
__DIR__ . '/compiler/build/scoper.inc.php',
|
|
__DIR__ . '/config/set',
|
|
]);
|
|
|
|
$parameters->set(Option::AUTO_IMPORT_NAMES, true);
|
|
|
|
$parameters->set(Option::AUTOLOAD_PATHS, [__DIR__ . '/compiler/src']);
|
|
|
|
$parameters->set(Option::EXCLUDE_PATHS, [
|
|
'/Fixture/', '/Source/', '/Expected/',
|
|
__DIR__ . '/packages/doctrine-annotation-generated/src/*',
|
|
// tempalte files
|
|
__DIR__ . '/packages/rector-generator/templates/*',
|
|
// public api
|
|
__DIR__ . '/packages/rector-generator/src/ValueObject/RectorRecipe.php',
|
|
__DIR__ . '/rules/symfony-php-config/functions/functions.php',
|
|
]);
|
|
|
|
$parameters->set(Option::EXCLUDE_RECTORS, [
|
|
StringClassNameToClassConstantRector::class,
|
|
SplitStringClassConstantToClassConstFetchRector::class,
|
|
// false positives on constants used in rector-ci.php
|
|
RemoveUnusedClassConstantRector::class,
|
|
]);
|
|
};
|