array_indentation,braces.test 358 B

123456789101112131415161718192021222324252627
  1. --TEST--
  2. Integration of fixers: array_indentation,braces.
  3. --RULESET--
  4. {"array_indentation": true, "braces": true}
  5. --EXPECT--
  6. <?php
  7. class Foo
  8. {
  9. public function bar()
  10. {
  11. return [
  12. 'foo',
  13. 'bar',
  14. ];
  15. }
  16. }
  17. --INPUT--
  18. <?php
  19. class Foo {
  20. public function bar() {
  21. return [
  22. 'foo',
  23. 'bar',
  24. ];
  25. }
  26. }