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 cf33b9e commit 4e4cb1cCopy full SHA for 4e4cb1c
2 files changed
composer.json
@@ -22,7 +22,7 @@
22
"squizlabs/php_codesniffer": "^3.13",
23
"symfony/console": "^6.4.20",
24
"symfony/finder": "^7.2.2",
25
- "symplify/coding-standard": "^12.4.1",
+ "symplify/coding-standard": "^12.4.3",
26
"symplify/easy-parallel": "^11.2.2",
27
"webmozart/assert": "^1.11"
28
},
rector.php
@@ -3,6 +3,7 @@
3
declare(strict_types=1);
4
5
use Rector\Config\RectorConfig;
6
+use Rector\DeadCode\Rector\ConstFetch\RemovePhpVersionIdCheckRector;
7
8
return RectorConfig::configure()
9
->withPhpSets()
@@ -26,5 +27,5 @@
__DIR__ . '/scoper.php',
29
// conditional checks
- \Rector\DeadCode\Rector\ConstFetch\RemovePhpVersionIdCheckRector::class,
30
+ RemovePhpVersionIdCheckRector::class,
31
]);
0 commit comments