12345678910111213141516 |
- --TEST--
- Integration of fixers: implode_call,method_argument_space.
- --RULESET--
- {"implode_call": true, "method_argument_space": {"on_multiline": "ensure_fully_multiline"}}
- --EXPECT--
- <?php
- implode(
- '',
- $foo
- );
- --INPUT--
- <?php
- implode(
- $foo
- );
|