Skip to content

Commit

Permalink
Fix: Configure newly added option
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Mar 19, 2022
1 parent 07f9fc7 commit 6bcfea8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/RuleSet/Php74.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
1 change: 1 addition & 0 deletions src/RuleSet/Php80.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
1 change: 1 addition & 0 deletions src/RuleSet/Php81.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
1 change: 1 addition & 0 deletions test/Unit/RuleSet/Php74Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
1 change: 1 addition & 0 deletions test/Unit/RuleSet/Php80Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
1 change: 1 addition & 0 deletions test/Unit/RuleSet/Php81Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 6bcfea8

Please sign in to comment.