From f1717e1038d391ead338d8c7a55ffe9472f0e14c Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Fri, 30 May 2025 18:23:59 +0700 Subject: [PATCH 1/2] Bump to symplify/coding-standard:^12.4.3 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" }, From 5824bd1af82ae91080e7a6b7d3722d3676c59d63 Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Fri, 30 May 2025 18:25:23 +0700 Subject: [PATCH 2/2] rectify --- rector.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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, ]);