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 e6de900 commit 8e5f1bbCopy full SHA for 8e5f1bb
rector.php
@@ -5,6 +5,7 @@
5
use Rector\Php74\Rector\Closure\ClosureToArrowFunctionRector;
6
use Rector\Php80\Rector\FunctionLike\MixedTypeRector;
7
use Rector\Php81\Rector\FuncCall\NullToStrictStringFuncCallArgRector;
8
+use Rector\Php84\Rector\Param\ExplicitNullableParamTypeRector;
9
use Rector\TypeDeclaration\Rector\Closure\AddClosureVoidReturnTypeWhereNoReturnRector;
10
11
return RectorConfig::configure()
@@ -16,6 +17,9 @@
16
17
])
18
->withPhpSets()
19
->withTypeCoverageLevel(0)
20
+ ->withRules([
21
+ ExplicitNullableParamTypeRector::class,
22
+ ])
23
->withSkip([
24
RemoveExtraParametersRector::class,
25
ClosureToArrowFunctionRector::class,
0 commit comments