Pattern: Malformed cascading call wrapping
Issue: -
Requires that all chained calls are placed on a new line if a preceding one is.
Example of incorrect code:
foo()
.bar().baz()
Example of correct code:
foo().bar().baz()
foo()
.bar()
.baz()