Skip to content

Commit

Permalink
add blank line before continue to laravel preset (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrseliga authored Jul 28, 2022
1 parent ee3d146 commit bc95526
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion resources/presets/laravel.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@
'blank_line_after_namespace' => true,
'blank_line_after_opening_tag' => true,
'blank_line_before_statement' => [
'statements' => ['return'],
'statements' => [
'continue',
'return'
],
],
'braces' => [
'allow_single_line_anonymous_class_with_empty_body' => true,
Expand Down

0 comments on commit bc95526

Please sign in to comment.