combine_nested_dirname,no_trailing_whitespace.test 244 B

1234567891011121314
  1. --TEST--
  2. Integration of fixers: combine_nested_dirname,no_trailing_whitespace.
  3. --RULESET--
  4. {"combine_nested_dirname": true, "no_trailing_whitespace": true}
  5. --EXPECT--
  6. <?php
  7. dirname($path
  8. , 3);
  9. --INPUT--
  10. <?php
  11. dirname(
  12. dirname($path, 2)
  13. );