Skip to content

Commit

Permalink
Allow multiline in class definition
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbalandan committed Sep 3, 2024
1 parent 9143903 commit e07e69a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Ruleset/Nexus80.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public function __construct()
'class_definition' => [
'multi_line_extends_each_single_line' => true,
'single_item_single_line' => true,
'single_line' => true,
'single_line' => false,
'space_before_parenthesis' => true,
'inline_constructor_arguments' => true,
],
Expand Down
2 changes: 1 addition & 1 deletion src/Ruleset/Nexus81.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public function __construct()
'class_definition' => [
'multi_line_extends_each_single_line' => true,
'single_item_single_line' => true,
'single_line' => true,
'single_line' => false,
'space_before_parenthesis' => true,
'inline_constructor_arguments' => true,
],
Expand Down
2 changes: 1 addition & 1 deletion src/Ruleset/Nexus82.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public function __construct()
'class_definition' => [
'multi_line_extends_each_single_line' => true,
'single_item_single_line' => true,
'single_line' => true,
'single_line' => false,
'space_before_parenthesis' => true,
'inline_constructor_arguments' => true,
],
Expand Down

0 comments on commit e07e69a

Please sign in to comment.