Skip to content

Commit a4ab33d

Browse files
committed
Don't enforce const separation
1 parent 0e7088b commit a4ab33d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/Config.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,12 @@ class Config extends \PhpCsFixer\Config
5151
'lowercase_keywords' => true,
5252
'magic_constant_casing' => true,
5353
'method_argument_space' => true,
54-
'class_attributes_separation' => true,
54+
'class_attributes_separation' => [
55+
'elements' => [
56+
'method',
57+
'property',
58+
],
59+
],
5560
'visibility_required' => true,
5661
'native_function_casing' => true,
5762
'no_blank_lines_after_class_opening' => true,

0 commit comments

Comments
 (0)