Changed
-
Remove
align-lists
from thelaravel
preset -
Don't force newlines between boolean operators and negated expressions
Before:
<?php foo(bar() && qux() && quux() && !( quuux() || quuuux() ));
After:
<?php foo(bar() && qux() && quux() && !( quuux() || quuuux() ));
Fixed
- Fix
sort-imports
issue where traits inserted into enums are sorted in error