diff --git a/composer.json b/composer.json index 90cb4df041..c00de95ddc 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ "squizlabs/php_codesniffer": "^3.13", "symfony/console": "^6.4.20", "symfony/finder": "^7.2.2", - "symplify/coding-standard": "^12.4.1", + "symplify/coding-standard": "^12.4.3", "symplify/easy-parallel": "^11.2.2", "webmozart/assert": "^1.11" }, diff --git a/rector.php b/rector.php index 9527944dab..bb35d35b9c 100644 --- a/rector.php +++ b/rector.php @@ -3,6 +3,7 @@ declare(strict_types=1); use Rector\Config\RectorConfig; +use Rector\DeadCode\Rector\ConstFetch\RemovePhpVersionIdCheckRector; return RectorConfig::configure() ->withPhpSets() @@ -26,5 +27,5 @@ __DIR__ . '/scoper.php', // conditional checks - \Rector\DeadCode\Rector\ConstFetch\RemovePhpVersionIdCheckRector::class, + RemovePhpVersionIdCheckRector::class, ]);