Is there a rule in PHP-CS-FIXER 2.15.3 to align a sequence of equal symbols?
For example to change
$a = 3;
$codeWord = 4;
$foo = 'xyz';
into
$a = 3;
$codeWord = 4;
$foo = 'xyz';
?
I have read almost every description of every rule at https://mlocati.github.io/php-cs-fixer-configurator/#version:2.15|configurator but I didn't find any. Did I missed it, or is there actuality no such rule?