We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 825f399 commit 9577ad3Copy full SHA for 9577ad3
tests/Issues/DowngradeNullableInitialization/config/configured_rule.php
@@ -3,12 +3,9 @@
3
declare(strict_types=1);
4
5
use Rector\Config\RectorConfig;
6
-use Rector\DowngradePhp81\Rector\FunctionLike\DowngradeNewInInitializerRector;
7
use Rector\DowngradePhp80\Rector\Class_\DowngradePropertyPromotionRector;
+use Rector\DowngradePhp81\Rector\FunctionLike\DowngradeNewInInitializerRector;
8
9
return static function (RectorConfig $rectorConfig): void {
10
- $rectorConfig->rules([
11
- DowngradeNewInInitializerRector::class,
12
- DowngradePropertyPromotionRector::class,
13
- ]);
14
-};
+ $rectorConfig->rules([DowngradeNewInInitializerRector::class, DowngradePropertyPromotionRector::class]);
+};
0 commit comments