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 c78fd72 commit 978bfeeCopy full SHA for 978bfee
config/set/downgrade-php84.php
@@ -3,12 +3,14 @@
3
declare(strict_types=1);
4
5
use Rector\Config\RectorConfig;
6
+use Rector\DowngradePhp84\Rector\FuncCall\DowngradeRoundingModeEnumRector;
7
use Rector\DowngradePhp84\Rector\MethodCall\DowngradeNewMethodCallWithoutParenthesesRector;
8
use Rector\ValueObject\PhpVersion;
9
10
return static function (RectorConfig $rectorConfig): void {
11
$rectorConfig->phpVersion(PhpVersion::PHP_83);
12
$rectorConfig->rules([
13
DowngradeNewMethodCallWithoutParenthesesRector::class,
14
+ DowngradeRoundingModeEnumRector::class,
15
]);
16
};
0 commit comments