Skip to content

Commit

Permalink
Fix: Disable newly added fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Mar 19, 2022
1 parent 1ddc4ec commit 07f9fc7
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 @@ -103,6 +103,7 @@ final class Php74 extends AbstractRuleSet implements ExplicitRuleSet
'control_structure_continuation_position' => [
'position' => 'same_line',
],
'date_time_create_from_format_call' => false,
'date_time_immutable' => true,
'declare_equal_normalize' => [
'space' => 'none',
Expand Down
1 change: 1 addition & 0 deletions src/RuleSet/Php80.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ final class Php80 extends AbstractRuleSet implements ExplicitRuleSet
'control_structure_continuation_position' => [
'position' => 'same_line',
],
'date_time_create_from_format_call' => false,
'date_time_immutable' => true,
'declare_equal_normalize' => [
'space' => 'none',
Expand Down
1 change: 1 addition & 0 deletions src/RuleSet/Php81.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ final class Php81 extends AbstractRuleSet implements ExplicitRuleSet
'control_structure_continuation_position' => [
'position' => 'same_line',
],
'date_time_create_from_format_call' => false,
'date_time_immutable' => true,
'declare_equal_normalize' => [
'space' => 'none',
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 @@ -109,6 +109,7 @@ final class Php74Test extends ExplicitRuleSetTestCase
'control_structure_continuation_position' => [
'position' => 'same_line',
],
'date_time_create_from_format_call' => false,
'date_time_immutable' => true,
'declare_equal_normalize' => [
'space' => 'none',
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 @@ -109,6 +109,7 @@ final class Php80Test extends ExplicitRuleSetTestCase
'control_structure_continuation_position' => [
'position' => 'same_line',
],
'date_time_create_from_format_call' => false,
'date_time_immutable' => true,
'declare_equal_normalize' => [
'space' => 'none',
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 @@ -109,6 +109,7 @@ final class Php81Test extends ExplicitRuleSetTestCase
'control_structure_continuation_position' => [
'position' => 'same_line',
],
'date_time_create_from_format_call' => false,
'date_time_immutable' => true,
'declare_equal_normalize' => [
'space' => 'none',
Expand Down

0 comments on commit 07f9fc7

Please sign in to comment.