We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c38394 commit 7618f07Copy full SHA for 7618f07
rector.php
@@ -1,6 +1,7 @@
1
<?php
2
3
use Rector\CodingStyle\Rector\ArrowFunction\StaticArrowFunctionRector;
4
+use Rector\CodingStyle\Rector\Closure\StaticClosureRector;
5
use Rector\Php81\Rector\FuncCall\NullToStrictStringFuncCallArgRector;
6
use Rector\Set\ValueObject\SetList;
7
use Rector\Set\ValueObject\LevelSetList;
@@ -21,6 +22,9 @@
21
22
NullToStrictStringFuncCallArgRector::class,
23
StaticArrowFunctionRector::class => [
24
__DIR__ . '/spec',
25
+ ],
26
+ StaticClosureRector::class => [
27
+ __DIR__ . '/spec',
28
]
29
]);
30
};
0 commit comments