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 e4ee3b3Copy full SHA for e4ee3b3
rector.php
@@ -6,6 +6,7 @@
6
use Rector\Php80\Rector\FunctionLike\MixedTypeRector;
7
use Rector\Php81\Rector\FuncCall\NullToStrictStringFuncCallArgRector;
8
use Rector\TypeDeclaration\Rector\Closure\AddClosureVoidReturnTypeWhereNoReturnRector;
9
+use Rector\Php84\Rector\Param\ExplicitNullableParamTypeRector;
10
11
return RectorConfig::configure()
12
->withPaths([
@@ -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