PHP Styling -- Indent inside Array() initializer
I think I'm missing a setting somewhere but I can't seem to find it. Currently PhpStorm autoformats:
$foo = foo(array(
//...
));
as
$foo = foo(array(
// ....
));
Is there a way to get it to behave as in the first snippet?
Please sign in to leave a comment.
Settings | Code Style | PHP | Wrapping and Braces | Function call arguments | Align when multiline = unchecked