Skip to content

v0.4.41

Compare
Choose a tag to compare
@github-actions github-actions released this 20 Oct 11:34
· 591 commits to main since this release
v0.4.41
b5f7b82

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

Fixed

  • Fix issue where indentation is incorrect when arguments to new static(... break over multiple lines

  • Fix same issue with isset() lists

    Before:

    <?php
    isset($a,
    $b);

    After:

    <?php
    isset($a,
        $b);