diff --git a/src/RuleSet/Php74.php b/src/RuleSet/Php74.php index 8660f692..6fe1eb5c 100644 --- a/src/RuleSet/Php74.php +++ b/src/RuleSet/Php74.php @@ -716,6 +716,7 @@ final class Php74 extends AbstractRuleSet implements ExplicitRuleSet 'trim_array_spaces' => true, 'types_spaces' => [ 'space' => 'none', + 'space_multiple_catch' => null, ], 'unary_operator_spaces' => true, 'use_arrow_functions' => false, diff --git a/src/RuleSet/Php80.php b/src/RuleSet/Php80.php index 8217b0dc..9b765c56 100644 --- a/src/RuleSet/Php80.php +++ b/src/RuleSet/Php80.php @@ -717,6 +717,7 @@ final class Php80 extends AbstractRuleSet implements ExplicitRuleSet 'trim_array_spaces' => true, 'types_spaces' => [ 'space' => 'none', + 'space_multiple_catch' => null, ], 'unary_operator_spaces' => true, 'use_arrow_functions' => false, diff --git a/src/RuleSet/Php81.php b/src/RuleSet/Php81.php index d00d65b1..f97ea34e 100644 --- a/src/RuleSet/Php81.php +++ b/src/RuleSet/Php81.php @@ -720,6 +720,7 @@ final class Php81 extends AbstractRuleSet implements ExplicitRuleSet 'trim_array_spaces' => true, 'types_spaces' => [ 'space' => 'none', + 'space_multiple_catch' => null, ], 'unary_operator_spaces' => true, 'use_arrow_functions' => false, diff --git a/test/Unit/RuleSet/Php74Test.php b/test/Unit/RuleSet/Php74Test.php index ca20c121..6f13662d 100644 --- a/test/Unit/RuleSet/Php74Test.php +++ b/test/Unit/RuleSet/Php74Test.php @@ -722,6 +722,7 @@ final class Php74Test extends ExplicitRuleSetTestCase 'trim_array_spaces' => true, 'types_spaces' => [ 'space' => 'none', + 'space_multiple_catch' => null, ], 'unary_operator_spaces' => true, 'use_arrow_functions' => false, diff --git a/test/Unit/RuleSet/Php80Test.php b/test/Unit/RuleSet/Php80Test.php index 12be0a1d..3bab7784 100644 --- a/test/Unit/RuleSet/Php80Test.php +++ b/test/Unit/RuleSet/Php80Test.php @@ -723,6 +723,7 @@ final class Php80Test extends ExplicitRuleSetTestCase 'trim_array_spaces' => true, 'types_spaces' => [ 'space' => 'none', + 'space_multiple_catch' => null, ], 'unary_operator_spaces' => true, 'use_arrow_functions' => false, diff --git a/test/Unit/RuleSet/Php81Test.php b/test/Unit/RuleSet/Php81Test.php index 5986cc66..0d3eebc7 100644 --- a/test/Unit/RuleSet/Php81Test.php +++ b/test/Unit/RuleSet/Php81Test.php @@ -726,6 +726,7 @@ final class Php81Test extends ExplicitRuleSetTestCase 'trim_array_spaces' => true, 'types_spaces' => [ 'space' => 'none', + 'space_multiple_catch' => null, ], 'unary_operator_spaces' => true, 'use_arrow_functions' => false,