Skip to content

Commit 4a15866

Browse files
committed
fix code style
1 parent fbe65be commit 4a15866

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

bin/changelog.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<?php
2+
3+
declare(strict_types=1);
24
/**
35
* @see: https://github.com/marcocesarato/php-conventional-changelog/blob/main/docs/config.md
46
*/

ecs.php

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,18 @@
159159
$ecsConfig->ruleWithConfiguration(NoMixedEchoPrintFixer::class, ['use' => 'echo']);
160160

161161
$ecsConfig->ruleWithConfiguration(BlankLineBeforeStatementFixer::class, [
162-
'statements' => ['continue', 'return', 'foreach', 'if', 'switch', 'try', 'throw', 'while', 'yield', 'yield_from'],
162+
'statements' => [
163+
'continue',
164+
'return',
165+
'foreach',
166+
'if',
167+
'switch',
168+
'try',
169+
'throw',
170+
'while',
171+
'yield',
172+
'yield_from',
173+
],
163174
]);
164175

165176
$ecsConfig->ruleWithConfiguration(BlankLinesBeforeNamespaceFixer::class, [

0 commit comments

Comments
 (0)