Wrapping/aligning chained method calls
I have this code
$class
->method4()
->method2()
->method3();
How do I get it to do the following?
$class
->method4()
->method2()
->method3();
I've gone through every option I can see/think of for Wrapping and Braces but no success. Thanks.
请先登录再写评论。