-
Notifications
You must be signed in to change notification settings - Fork 8
/
rector.php
50 lines (43 loc) · 1.73 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
<?php
declare(strict_types=1);
use Rector\Caching\ValueObject\Storage\FileCacheStorage;
use Rector\CodeQuality\Rector\Class_\InlineConstructorDefaultToPropertyRector;
use Rector\Config\RectorConfig;
use Rector\EarlyReturn\Rector\If_\ChangeIfElseValueAssignToEarlyReturnRector;
use Rector\Php74\Rector\Closure\ClosureToArrowFunctionRector;
use Rector\Php80\Rector\Catch_\RemoveUnusedVariableInCatchRector;
use Rector\Php80\Rector\ClassMethod\FinalPrivateToPrivateVisibilityRector;
use Rector\Php80\Rector\Switch_\ChangeSwitchToMatchRector;
use Rector\Php81\Rector\Property\ReadOnlyPropertyRector;
use Rector\Set\ValueObject\LevelSetList;
use Rector\TypeDeclaration\Rector\Property\TypedPropertyFromStrictSetUpRector;
/**
* @see https://github.com/rectorphp/rector/blob/main/docs/rector_rules_overview.md
*/
return static function (RectorConfig $rectorConfig): void {
$rectorConfig->paths([
__DIR__ . '/config',
__DIR__ . '/src',
__DIR__ . '/tests',
]);
$rectorConfig->cacheClass(FileCacheStorage::class);
$rectorConfig->cacheDirectory('./.cache/rector');
// register a single rule
$rectorConfig->rules([
InlineConstructorDefaultToPropertyRector::class,
ChangeIfElseValueAssignToEarlyReturnRector::class,
RemoveUnusedVariableInCatchRector::class,
TypedPropertyFromStrictSetUpRector::class,
ReadOnlyPropertyRector::class,
ChangeSwitchToMatchRector::class,
FinalPrivateToPrivateVisibilityRector::class,
]);
// define sets of rules
$rectorConfig->sets([
LevelSetList::UP_TO_PHP_81,
// \RectorLaravel\Set\LaravelLevelSetList::UP_TO_LARAVEL_100,
]);
$rectorConfig->skip([
ClosureToArrowFunctionRector::class,
]);
};