I would like to insert a line break at every object method on auto reformat into PhpStorm :
eg :
function (object $object)
{
$object->method1()->method2()->method3();
// select and press ctrl + alt + l
$object
->method1()
->method2()
->method3()
;
}
I use already use a .editorconfig
file but I have no clue to found the right parameter!