Skip to content

Commit 9be309a

Browse files
committed
Updated blank_line_before_statement rule to ignore return, throw, try
1 parent db83e6a commit 9be309a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.php_cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ return PhpCsFixer\Config::create()
2525
'unary_operator_spaces' => true,
2626
'binary_operator_spaces' => true,
2727
'blank_line_before_statement' => [
28-
'statements' => ['break', 'continue', 'declare', 'return', 'throw', 'try'],
28+
'statements' => ['break', 'continue', 'declare'],
2929
],
3030
'braces' => false,
3131
'phpdoc_single_line_var_spacing' => true,

0 commit comments

Comments
 (0)