pre_increment
Warning
This rule is deprecated and will be removed on next major version.
You should use increment_style instead.
increment_style
Pre incrementation/decrementation should be used if possible.
--- Original +++ New @@ -1,3 +1,3 @@ <?php -$a++; -$b--; +++$a; +--$b;