Steve Chamaillard
Steve Chamaillard

Reputation: 2339

PHPStorm 9 align assignments in PHP

After many searches, it seems I don't have the option to align consecutive assignments of variables in PHP. I can align key/value pairs in arrays, but that's it.

It also seems older PHPStorm versions have it.

Is that possible in PHPStorm 9 ? If so, how ? If not, is it really much better than older versions ? I just started using it (coming from Sublime).

This is an example of non formatted code :

$sExample = 'Example !';
$sAnotherOneHere = 'Again ?';
$sAndTheLast = 'ENOUGH !';

And that's the format result :

$sExample        = 'Example !';
$sAnotherOneHere = 'Again ?';
$sAndTheLast     = 'ENOUGH !';

Upvotes: 21

Views: 8452

Answers (1)

axiac
axiac

Reputation: 72177

The option is still there and it works flawlessly.

Search for it under Editor -> Code Style -> PHP -> Wrapping and Braces -> Assignment Statement. It's called "Align consecutive assignments".

Upvotes: 63

Related Questions