After many searches, it seems like I have no way to align sequential variable assignments in PHP. I can align key / value pairs in arrays, but that.
It also seems that older versions of PHPStorm have it.
Is this possible in PHPStorm 9? If so, how? If not, is it really much better than older versions? I just started using it (from Sublime).
This is an example of unformatted code:
$sExample = 'Example !'; $sAnotherOneHere = 'Again ?'; $sAndTheLast = 'ENOUGH !';
And what is the result of the format:
$sExample = 'Example !'; $sAnotherOneHere = 'Again ?'; $sAndTheLast = 'ENOUGH !';
phpstorm
Steve chamaillard
source share