Added
- Add experimental
drupal
preset (available via--preset drupal
)
Changed
- Review files excluded by default when running from the command line
- The default regex is now case sensitive:
/\/(\.git|\.hg|\.svn|_?build|dist|vendor)\/$/
- Files in
**/tests*/
and**/var/
are no longer excluded by default
- The default regex is now case sensitive:
Fixed
-
Fix issue where indentation is incorrect when arguments to
new static(...
break over multiple lines -
Fix same issue with
isset()
listsBefore:
<?php isset($a, $b);
After:
<?php isset($a, $b);