implode_call,method_argument_space.test 256 B

12345678910111213141516
  1. --TEST--
  2. Integration of fixers: implode_call,method_argument_space.
  3. --RULESET--
  4. {"implode_call": true, "method_argument_space": {"on_multiline": "ensure_fully_multiline"}}
  5. --EXPECT--
  6. <?php
  7. implode(
  8. '',
  9. $foo
  10. );
  11. --INPUT--
  12. <?php
  13. implode(
  14. $foo
  15. );