We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2d1b61 commit 2db4af0Copy full SHA for 2db4af0
src/Rules.php
@@ -72,7 +72,7 @@ public static function create(array $overwrittenRules = []): array {
72
'property' => 'one',
73
],
74
75
- 'no_null_property_initialization' => true, // TODO: check against yii2 default overrides
+ 'no_null_property_initialization' => true,
76
'no_php4_constructor' => true,
77
'no_unneeded_final_method' => true,
78
'ordered_class_elements' => true,
@@ -98,7 +98,7 @@ public static function create(array $overwrittenRules = []): array {
98
'trailing_comma_in_multiline' => [
99
'elements' => PHP_MAJOR_VERSION >= 8
100
? ['arrays', 'arguments', 'parameters', 'match']
101
- : ['arrays', 'parameters'],
+ : ['arrays', 'arguments'],
102
103
'yoda_style' => [
104
'equal' => false,
0 commit comments