We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb2d89d commit 29a8a2eCopy full SHA for 29a8a2e
rector.php
@@ -3,6 +3,7 @@
3
declare(strict_types=1);
4
5
use Rector\Config\RectorConfig;
6
+use Rector\Php80\Rector\Class_\ClassPropertyAssignToConstructorPromotionRector;
7
use Rector\Set\ValueObject\SetList;
8
use RectorLaravel\Set\LaravelSetList;
9
@@ -13,4 +14,8 @@
13
14
SetList::PHP_80,
15
SetList::PHP_81,
16
]);
17
+
18
+ $rectorConfig->skip([
19
+ ClassPropertyAssignToConstructorPromotionRector::class,
20
+ ]);
21
};
0 commit comments