Skip to content

Commit 73e9e8f

Browse files
committed
No newlines between uses
Because types are not specified in docblocks but directly in code, which is even more true with PHP 8 and union types. Because ``` use Something; use SomethingElse; private Foo $foo; private Bar $bar; ``` looks better when written like ``` use Something; use SomethingElse; private Foo $foo; private Bar $bar; ```
1 parent 7419ef7 commit 73e9e8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ruleset.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
<properties>
7171
<property name="linesCountBeforeFirstUse" value="1"/>
7272
<property name="linesCountBeforeFirstUseWhenFirstInClass" value="1"/>
73-
<property name="linesCountBetweenUses" value="1"/>
73+
<property name="linesCountBetweenUses" value="0"/>
7474
<property name="linesCountAfterLastUse" value="2"/>
7575
<property name="linesCountAfterLastUseWhenLastInClass" value="1"/>
7676
</properties>

0 commit comments

Comments
 (0)