increment_style,spaces_inside_parentheses.test 227 B

12345678910111213
  1. --TEST--
  2. Integration of fixers: increment_style,spaces_inside_parentheses.
  3. --RULESET--
  4. {"increment_style": true, "spaces_inside_parentheses": true}
  5. --EXPECT--
  6. <?php
  7. for (; foo(); ++$j);
  8. --INPUT--
  9. <?php
  10. for (; foo(); $j ++);