You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix array member indentation in function calls - take 2
The fix in 3ce73dd didn't quite do it.
It messed up indentation of stuff like:
```php
$someObject = new SomeClass();
$otherObject= new OtherClass($someObject
->methodOne()
->methodTwo()
);
```
0 commit comments