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 3bc4927 commit 3c1ce52Copy full SHA for 3c1ce52
config/set/downgrade-php83.php
@@ -7,12 +7,14 @@
7
use Rector\ValueObject\PhpVersion;
8
use Rector\DowngradePhp83\Rector\ClassConst\DowngradeTypedClassConstRector;
9
use Rector\DowngradePhp83\Rector\ClassConstFetch\DowngradeDynamicClassConstFetchRector;
10
+use Rector\DowngradePhp83\Rector\FuncCall\DowngradeJsonValidateRector;
11
12
return static function (RectorConfig $rectorConfig): void {
13
$rectorConfig->phpVersion(PhpVersion::PHP_82);
14
$rectorConfig->rules([
15
DowngradeTypedClassConstRector::class,
16
DowngradeReadonlyAnonymousClassRector::class,
17
DowngradeDynamicClassConstFetchRector::class,
18
+ DowngradeJsonValidateRector::class,
19
]);
20
};
0 commit comments