As I guess, this is about the code formation for multi-line assignment such as this post has fully described.
...example
$server = 'localhost';
$port = 80;
the equal signs would be made to "line up", the second statement getting more whitespace padding in front of the equal sign than it would...
i.e. we want it to be
$server = 'localhost';
$port = 80;
But I guess it is not that way.
So my question is what is such option?
