method_argument_space,array_indentation.test 485 B

12345678910111213141516171819202122232425262728293031
  1. --TEST--
  2. Integration of fixers: method_argument_space,array_indentation.
  3. --RULESET--
  4. {"array_indentation": true, "method_argument_space": {"on_multiline" : "ensure_fully_multiline"}}
  5. --EXPECT--
  6. <?php
  7. function foo($foo)
  8. {
  9. $foo
  10. ->bar()
  11. ->baz(
  12. [
  13. $x
  14. ]
  15. )
  16. ;
  17. }
  18. --INPUT--
  19. <?php
  20. function foo($foo)
  21. {
  22. $foo
  23. ->bar()
  24. ->baz(
  25. [
  26. $x
  27. ]
  28. )
  29. ;
  30. }