standardize_increment,increment_style.test 202 B

1234567891011
  1. --TEST--
  2. Integration of fixers: standardize_increment,increment_style.
  3. --RULESET--
  4. {"increment_style": {"style": "post"}, "standardize_increment": true}
  5. --EXPECT--
  6. <?php
  7. $i++;
  8. --INPUT--
  9. <?php
  10. $i += 1;