Skip to content

v2.3.0

Compare
Choose a tag to compare
@MasterOdin MasterOdin released this 31 Jan 16:42
  • Update slevomat/coding-standard to ^6.0
  • Update squizlabs/php_codesniffer to ^3.5.4
  • Require boolean placement at beginning of line for multi-line control structures:
if (
    $condition1
    && $condition2
    && (
        $condition 3
        || $condition 4
    )
)