From 8a76e99b32cfb1f45398fa82e137147c937d2f50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Thu, 13 Oct 2022 11:15:28 +0200 Subject: [PATCH] Fix: Disable newly added fixer --- src/RuleSet/Php74.php | 1 + src/RuleSet/Php80.php | 1 + src/RuleSet/Php81.php | 1 + test/Unit/RuleSet/Php74Test.php | 1 + test/Unit/RuleSet/Php80Test.php | 1 + test/Unit/RuleSet/Php81Test.php | 1 + 6 files changed, 6 insertions(+) diff --git a/src/RuleSet/Php74.php b/src/RuleSet/Php74.php index 041ee041..f9460035 100644 --- a/src/RuleSet/Php74.php +++ b/src/RuleSet/Php74.php @@ -380,6 +380,7 @@ final class Php74 extends AbstractRuleSet implements ExplicitRuleSet 'no_unset_cast' => true, 'no_unset_on_property' => true, 'no_unused_imports' => true, + 'no_useless_concat_operator' => false, 'no_useless_else' => true, 'no_useless_nullsafe_operator' => false, 'no_useless_return' => true, diff --git a/src/RuleSet/Php80.php b/src/RuleSet/Php80.php index 26481d6d..afbbad9d 100644 --- a/src/RuleSet/Php80.php +++ b/src/RuleSet/Php80.php @@ -381,6 +381,7 @@ final class Php80 extends AbstractRuleSet implements ExplicitRuleSet 'no_unset_cast' => true, 'no_unset_on_property' => true, 'no_unused_imports' => true, + 'no_useless_concat_operator' => false, 'no_useless_else' => true, 'no_useless_nullsafe_operator' => true, 'no_useless_return' => true, diff --git a/src/RuleSet/Php81.php b/src/RuleSet/Php81.php index 198ce73a..ca65267c 100644 --- a/src/RuleSet/Php81.php +++ b/src/RuleSet/Php81.php @@ -381,6 +381,7 @@ final class Php81 extends AbstractRuleSet implements ExplicitRuleSet 'no_unset_cast' => true, 'no_unset_on_property' => true, 'no_unused_imports' => true, + 'no_useless_concat_operator' => false, 'no_useless_else' => true, 'no_useless_nullsafe_operator' => true, 'no_useless_return' => true, diff --git a/test/Unit/RuleSet/Php74Test.php b/test/Unit/RuleSet/Php74Test.php index 45b1085a..76468f48 100644 --- a/test/Unit/RuleSet/Php74Test.php +++ b/test/Unit/RuleSet/Php74Test.php @@ -386,6 +386,7 @@ final class Php74Test extends ExplicitRuleSetTestCase 'no_unset_cast' => true, 'no_unset_on_property' => true, 'no_unused_imports' => true, + 'no_useless_concat_operator' => false, 'no_useless_else' => true, 'no_useless_nullsafe_operator' => false, 'no_useless_return' => true, diff --git a/test/Unit/RuleSet/Php80Test.php b/test/Unit/RuleSet/Php80Test.php index ff4965a0..c0ae2ba8 100644 --- a/test/Unit/RuleSet/Php80Test.php +++ b/test/Unit/RuleSet/Php80Test.php @@ -387,6 +387,7 @@ final class Php80Test extends ExplicitRuleSetTestCase 'no_unset_cast' => true, 'no_unset_on_property' => true, 'no_unused_imports' => true, + 'no_useless_concat_operator' => false, 'no_useless_else' => true, 'no_useless_nullsafe_operator' => true, 'no_useless_return' => true, diff --git a/test/Unit/RuleSet/Php81Test.php b/test/Unit/RuleSet/Php81Test.php index 2542a2e9..b62ad9c7 100644 --- a/test/Unit/RuleSet/Php81Test.php +++ b/test/Unit/RuleSet/Php81Test.php @@ -387,6 +387,7 @@ final class Php81Test extends ExplicitRuleSetTestCase 'no_unset_cast' => true, 'no_unset_on_property' => true, 'no_unused_imports' => true, + 'no_useless_concat_operator' => false, 'no_useless_else' => true, 'no_useless_nullsafe_operator' => true, 'no_useless_return' => true,