Lines Matching full:rector
7 use dokuwiki\test\rector\DokuWikiPtlnRector;
8 use dokuwiki\test\rector\DokuWikiRenamePrintToEcho;
9 use Rector\Caching\ValueObject\Storage\FileCacheStorage;
10 use Rector\CodeQuality\Rector\ClassMethod\ExplicitReturnNullRector;
11 use Rector\CodeQuality\Rector\Concat\JoinStringConcatRector;
12 use Rector\CodeQuality\Rector\Equal\UseIdenticalOverEqualWithSameTypeRector;
13 use Rector\CodeQuality\Rector\FunctionLike\SimplifyUselessVariableRector;
14 use Rector\CodeQuality\Rector\If_\CombineIfRector;
15 use Rector\CodeQuality\Rector\If_\CompleteMissingIfElseBracketRector;
16 use Rector\CodeQuality\Rector\If_\ExplicitBoolCompareRector;
17 use Rector\CodeQuality\Rector\If_\SimplifyIfElseToTernaryRector;
18 use Rector\CodeQuality\Rector\If_\SimplifyIfReturnBoolRector;
19 use Rector\CodeQuality\Rector\Isset_\IssetOnPropertyObjectToPropertyExistsRector;
20 use Rector\CodingStyle\Rector\Catch_\CatchExceptionNameMatchingTypeRector;
21 use Rector\CodingStyle\Rector\Encapsed\EncapsedStringsToSprintfRector;
22 use Rector\CodingStyle\Rector\Encapsed\WrapEncapsedVariableInCurlyBracesRector;
23 use Rector\CodingStyle\Rector\FuncCall\StrictArraySearchRector;
24 use Rector\CodingStyle\Rector\Stmt\NewlineAfterStatementRector;
25 use Rector\CodingStyle\Rector\String_\SymplifyQuoteEscapeRector;
26 use Rector\Config\RectorConfig;
27 use Rector\DeadCode\Rector\ClassMethod\RemoveUnusedConstructorParamRector;
28 use Rector\DeadCode\Rector\ClassMethod\RemoveUselessParamTagRector;
29 use Rector\DeadCode\Rector\ClassMethod\RemoveUselessReturnTagRector;
30 use Rector\DeadCode\Rector\If_\RemoveAlwaysTrueIfConditionRector;
31 use Rector\DeadCode\Rector\If_\RemoveUnusedNonEmptyArrayBeforeForeachRector;
32 use Rector\DeadCode\Rector\Property\RemoveUselessVarTagRector;
33 use Rector\DeadCode\Rector\StaticCall\RemoveParentCallWithoutParentRector;
34 use Rector\DeadCode\Rector\Stmt\RemoveUnreachableStatementRector;
35 use Rector\Php71\Rector\FuncCall\RemoveExtraParametersRector;
36 use Rector\Php80\Rector\Identical\StrEndsWithRector;
37 use Rector\Php80\Rector\Identical\StrStartsWithRector;
38 use Rector\Php80\Rector\NotIdentical\StrContainsRector;
39 use Rector\Renaming\Rector\FuncCall\RenameFunctionRector;
40 use Rector\Renaming\Rector\Name\RenameClassRector;
41 use Rector\Set\ValueObject\LevelSetList;
42 use Rector\Set\ValueObject\SetList;
43 use Rector\Strict\Rector\Empty_\DisallowedEmptyRuleFixerRector;
44 use Rector\TypeDeclaration\Rector\ClassMethod\ReturnNeverTypeRector;
45 use Rector\DeadCode\Rector\If_\ReduceAlwaysFalseIfOrRector;
49 require_once __DIR__ . '/rector/DokuWikiPtlnRector.php';
50 require_once __DIR__ . '/rector/DokuWikiRenamePrintToEcho.php';
52 // tune parallel task settings (see rectorphp/rector#8396)
69 $rectorConfig->cacheDirectory(__DIR__ . '/.rector-cache');
127 RemoveUnusedConstructorParamRector::class, // see rectorphp/rector#8580
137 ReduceAlwaysFalseIfOrRector::class, // see rectorphp/rector#8916