Commit 73e9e8f
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
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
73 | | - | |
| 73 | + | |
74 | 74 | | |
75 | 75 | | |
76 | 76 | | |
| |||
0 commit comments