-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathrector.php
More file actions
39 lines (36 loc) · 1.84 KB
/
Copy pathrector.php
File metadata and controls
39 lines (36 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
declare(strict_types=1);
use Rector\CodeQuality\Rector\Foreach_\UnusedForeachValueToArrayKeysRector;
use Rector\CodeQuality\Rector\Identical\StrlenZeroToIdenticalEmptyStringRector;
use Rector\CodeQuality\Rector\If_\CombineIfRector;
use Rector\CodeQuality\Rector\If_\ExplicitBoolCompareRector;
use Rector\CodeQuality\Rector\Isset_\IssetOnPropertyObjectToPropertyExistsRector;
use Rector\Config\RectorConfig;
use Rector\Php81\Rector\FuncCall\NullToStrictStringFuncCallArgRector;
return RectorConfig::configure()
->withPaths([
__DIR__ . '/src',
__DIR__ . '/tests',
])
->withPhpSets()
->withParallel()
->withAttributesSets()
->withImportNames(importShortClasses: false, removeUnusedImports: true)
->withPreparedSets(deadCode: true, codeQuality: true, typeDeclarations: true)
->withSkip([
StrlenZeroToIdenticalEmptyStringRector::class,
ExplicitBoolCompareRector::class,
IssetOnPropertyObjectToPropertyExistsRector::class,
CombineIfRector::class,
UnusedForeachValueToArrayKeysRector::class,
\Rector\CodeQuality\Rector\ClassMethod\ExplicitReturnNullRector::class,
NullToStrictStringFuncCallArgRector::class,
\Rector\Php83\Rector\ClassMethod\AddOverrideAttributeToOverriddenMethodsRector::class,
\Rector\DeadCode\Rector\ClassMethod\RemoveUnusedPublicMethodParameterRector::class,
\Rector\TypeDeclaration\Rector\ArrowFunction\AddArrowFunctionReturnTypeRector::class,
\Rector\Php80\Rector\FuncCall\ClassOnObjectRector::class,
\Rector\Strict\Rector\Empty_\DisallowedEmptyRuleFixerRector::class,
\Rector\DeadCode\Rector\ClassMethod\RemoveEmptyClassMethodRector::class,
\Rector\DeadCode\Rector\ClassMethod\RemoveUnusedPrivateMethodRector::class,
\Rector\DeadCode\Rector\Foreach_\RemoveUnusedForeachKeyRector::class
]);