Fork me on GitHub
a Sensio Labs Product

I ate three cookies πŸͺ (v3.40.2) edition

Rule standardize_incrementΒΆ

Increment and decrement operators should be used if possible.

ExamplesΒΆ

Example #1ΒΆ

--- Original
+++ New
 <?php
-$i += 1;
+++$i;

Example #2ΒΆ

--- Original
+++ New
 <?php
-$i -= 1;
+--$i;

Rule setsΒΆ

The rule is part of the following rule sets:

Source classΒΆ

PhpCsFixer\Fixer\Operator\StandardizeIncrementFixer