We are using one of the Squiz rules in our custom phpcs profile.
Sadly I am having some issues with getting PhpStorm set up to handle this correctly. This is what an array should look like.
$test = [
1,
2,
];
But PhpStorm formats it like this no matter what I do.
$test = [
1,
2,
];
Any ideas on how to get PhpStorm to format it correctly?