Skip to content

Commit de7bb75

Browse files
committed
co foxes
1 parent ca1d0e7 commit de7bb75

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

rector.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33

44
declare( strict_types = 1 );
55

6+
use Rector\CodeQuality\Rector\Class_\CompleteDynamicPropertiesRector;
67
use Rector\CodeQuality\Rector\If_\ExplicitBoolCompareRector;
78
use Rector\Config\RectorConfig;
89
use Rector\DeadCode\Rector\Property\RemoveUnusedPrivatePropertyRector;
10+
use Rector\DeadCode\Rector\StaticCall\RemoveParentCallWithoutParentRector;
911
use Rector\Set\ValueObject\LevelSetList;
1012
use Rector\Set\ValueObject\SetList;
1113

@@ -18,8 +20,10 @@
1820
] );
1921

2022
$rectorConfig->skip( [
21-
RemoveUnusedPrivatePropertyRector::class,
23+
CompleteDynamicPropertiesRector::class,
2224
ExplicitBoolCompareRector::class,
25+
RemoveParentCallWithoutParentRector::class,
26+
RemoveUnusedPrivatePropertyRector::class,
2327
] );
2428

2529
$rectorConfig->importShortClasses();

0 commit comments

Comments
 (0)