6
0
Fork 0
release
Jing Li 2022-02-06 16:58:41 +08:00
parent adb417b80f
commit 8d400b204e
1 changed files with 10 additions and 0 deletions

View File

@ -10,6 +10,12 @@ return (new Config())
'array_syntax' => [
'syntax' => 'short',
],
'binary_operator_spaces' => [
'default' => 'single_space',
'operators' => [
'=>' => null,
],
],
'cast_spaces' => true,
'class_attributes_separation' => [
'elements' => [
@ -17,9 +23,13 @@ return (new Config())
],
],
'function_typehint_space' => true,
'magic_constant_casing' => true,
'magic_method_casing' => true,
'method_argument_space' => [
'on_multiline' => 'ignore',
],
'native_function_casing' => true,
'native_function_type_declaration_casing' => true,
'no_multiline_whitespace_around_double_arrow' => true,
'no_singleline_whitespace_before_semicolons' => true,
'no_trailing_comma_in_singleline_array' => true,