I haven't found any good resources for this, so here's the question. I have the following code:
public function myFunction(
string $name,
int $age
) {}
When I format the code, PhpStorm will align the variables like so:
public function myFunction(
string $name,
int $age
) {}
I want to STOP this behaviour and have it format the code like the first block. Running build #PS-213.7172.28 in case that matters.