v1.2.0
1.2.0 - 2024-02-01
Added
array_syntax
: Force short syntax for arraylist_syntax
: Same for listfully_qualified_strict_types
: Remove namespace from classname when there is ause
statement, and add missing backslash for global namespaceno_leading_import_slash
: Remove leading slash fromuse
statementnullable_type_declaration_for_default_null_value
: Add missing?
on type declaration for parameters defaulting tonull
. This will most likely be needed to avoid warnings in PHP 8.4.yoda_style
: forbid yoda style comparision. This replacesnull === $a
by$a === null
.
What's Changed
Full Changelog: v1.1.1...v1.2.0