Skip to content

Commit

Permalink
Opening braces on their own line
Browse files Browse the repository at this point in the history
Signed-off-by: objecttothis <[email protected]>
  • Loading branch information
objecttothis committed May 14, 2024
1 parent 7e4dfa1 commit 9709102
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
return $config->setRules([
'@PSR12' => true,
'indentation_type' => true,
'braces' => ['indent_with_space' => false],
'braces' => [
'position_after_functions_and_oop_constructs' => 'next',
'indent_with_space' => false
],
])
->setFinder($finder)
->setIndent("\t")
Expand Down

0 comments on commit 9709102

Please sign in to comment.