-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrector.php
51 lines (43 loc) · 1.67 KB
/
rector.php
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
40
41
42
43
44
45
46
47
48
49
50
51
<?php
use Rector\CodingStyle\Enum\PreferenceSelfThis;
use Rector\CodingStyle\Rector\ClassMethod\ReturnArrayClassMethodToYieldRector;
use Rector\CodingStyle\Rector\MethodCall\PreferThisOrSelfMethodCallRector;
use Rector\CodingStyle\ValueObject\ReturnArrayClassMethodToYield;
use Rector\Config\RectorConfig;
use Rector\PHPUnit\Set\PHPUnitSetList;
use Rector\Set\ValueObject\LevelSetList;
use Rector\Set\ValueObject\SetList;
return static function (RectorConfig $rectorConfig): void {
$rectorConfig->sets([
LevelSetList::UP_TO_PHP_81,
SetList::CODE_QUALITY,
SetList::DEAD_CODE,
SetList::PRIVATIZATION,
SetList::NAMING,
SetList::TYPE_DECLARATION,
SetList::EARLY_RETURN,
PHPUnitSetList::PHPUNIT_CODE_QUALITY,
SetList::CODING_STYLE,
]);
$rectorConfig->ruleWithConfiguration(
PreferThisOrSelfMethodCallRector::class,
[
'PHPUnit\Framework\TestCase' => PreferenceSelfThis::PREFER_THIS,
]
);
$rectorConfig->ruleWithConfiguration(ReturnArrayClassMethodToYieldRector::class, [
new ReturnArrayClassMethodToYield('PHPUnit\Framework\TestCase', '*provide*'),
]);
$rectorConfig->paths([
__DIR__ . '/src',
]);
$rectorConfig->importNames();
$rectorConfig->parallel();
$rectorConfig->skip([
\Rector\Php80\Rector\FunctionLike\UnionTypesRector::class,
\Rector\DeadCode\Rector\ClassMethod\RemoveUselessReturnTagRector::class,
\Rector\Php80\Rector\FunctionLike\MixedTypeRector::class,
\Rector\DeadCode\Rector\ClassMethod\RemoveUselessParamTagRector::class
]);
$rectorConfig->phpstanConfig(__DIR__ . '/phpstan.neon');
};