braces_position,statement_indentation.test 242 B

1234567891011121314
  1. --TEST--
  2. Integration of fixers: braces_position,statement_indentation.
  3. --RULESET--
  4. {"braces_position": true, "statement_indentation": true}
  5. --EXPECT--
  6. <?php
  7. function foo()
  8. {
  9. return true;
  10. }
  11. --INPUT--
  12. <?php
  13. function foo() { return true; }