From 3f400304329f8b28e9cb582d2aa1f94c8bed03d7 Mon Sep 17 00:00:00 2001 From: Alexander Schranz Date: Tue, 11 Jul 2023 00:49:21 +0200 Subject: [PATCH] Remove duplicated version_compare ReplaceFuncCallArgumentDefaultValue rule --- config/set/php80.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/config/set/php80.php b/config/set/php80.php index a0774cc2ffc..1d29831256c 100644 --- a/config/set/php80.php +++ b/config/set/php80.php @@ -98,8 +98,6 @@ new ReplaceFuncCallArgumentDefaultValue('version_compare', 2, '!', '!='), new ReplaceFuncCallArgumentDefaultValue('version_compare', 2, 'g', 'gt'), new ReplaceFuncCallArgumentDefaultValue('version_compare', 2, 'l', 'lt'), - new ReplaceFuncCallArgumentDefaultValue('version_compare', 2, 'gte', 'ge'), - new ReplaceFuncCallArgumentDefaultValue('version_compare', 2, 'lte', 'le'), new ReplaceFuncCallArgumentDefaultValue('version_compare', 2, 'n', 'ne'), ]); };