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 e074aa9 commit 76925a5Copy full SHA for 76925a5
tests/Issues/DowngradeNamedTrailing/config/configured_rule.php
@@ -1,11 +1,10 @@
1
<?php
2
3
+declare(strict_types=1);
4
+
5
use Rector\Config\RectorConfig;
-use Rector\DowngradePhp80\Rector\MethodCall\DowngradeNamedArgumentRector;
6
use Rector\DowngradePhp73\Rector\FuncCall\DowngradeTrailingCommasInFunctionCallsRector;
7
+use Rector\DowngradePhp80\Rector\MethodCall\DowngradeNamedArgumentRector;
8
9
return RectorConfig::configure()
- ->withRules([
- DowngradeNamedArgumentRector::class,
10
- DowngradeTrailingCommasInFunctionCallsRector::class,
11
- ]);
+ ->withRules([DowngradeNamedArgumentRector::class, DowngradeTrailingCommasInFunctionCallsRector::class]);
0 commit comments