Skip to content

Commit

Permalink
Merge branch '10.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Aug 20, 2023
2 parents 5c68ee8 + 191ff7b commit 1290075
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .php-cs-fixer.dist.php
Expand Up @@ -38,6 +38,10 @@
],
],
'blank_line_after_namespace' => true,
'blank_lines_before_namespace' => [
'max_line_breaks' => 1,
'min_line_breaks' => 0,
],
'blank_line_before_statement' => [
'statements' => [
'break',
Expand Down Expand Up @@ -154,7 +158,6 @@
'no_binary_string' => true,
'no_blank_lines_after_class_opening' => true,
'no_blank_lines_after_phpdoc' => true,
'no_blank_lines_before_namespace' => true,
'no_break_comment' => true,
'no_closing_tag' => true,
'no_empty_comment' => true,
Expand All @@ -174,7 +177,6 @@
'no_space_around_double_colon' => true,
'no_spaces_after_function_name' => true,
'no_spaces_around_offset' => true,
'no_spaces_inside_parenthesis' => true,
'no_superfluous_elseif' => true,
'no_superfluous_phpdoc_tags' => [
'allow_mixed' => true,
Expand Down Expand Up @@ -301,6 +303,9 @@
'single_space_around_construct' => true,
'single_trait_insert_per_statement' => true,
'space_after_semicolon' => true,
'spaces_inside_parentheses' => [
'space' => 'none',
],
'standardize_increment' => true,
'standardize_not_equals' => true,
'statement_indentation' => true,
Expand All @@ -322,9 +327,12 @@
]
],
'trim_array_spaces' => true,
'types_spaces' => [
'space' => 'none',
'type_declaration_spaces' => [
'elements' => [
'function',
],
],
'types_spaces' => true,
'unary_operator_spaces' => true,
'visibility_required' => [
'elements' => [
Expand Down

0 comments on commit 1290075

Please sign in to comment.