Releases: slevomat/coding-standard
Releases · slevomat/coding-standard
8.11.1
8.11.0
🆕 New sniffs
SlevomatCodingStandard.Commenting.AnnotationName
: Checks incorrect annotation names
🔧 Improvements
SlevomatCodingStandard.Namespaces.AlphabeticallySortedUses
: Don't fix when multiple uses are in one statement (thanks to @jonathan1055)- Support for
phpstan/phpdoc-parser
1.20
🐛 Fixes
SlevomatCodingStandard.Strings.DisallowVariableParsing
: Fixed false positiveSlevomatCodingStandard.Arrays.DisallowPartiallyKeyed
: Fixed false positive with array unpacking
8.10.0
🆕 New sniffs
SlevomatCodingStandard.Classes.DisallowStringExpressionPropertyFetch
: Disallows string expression property fetch$object->{'foo'}
SlevomatCodingStandard.Strings.DisallowVariableParsing
: Disallows variable parsing inside strings (thanks to @Ekimik)SlevomatCodingStandard.Arrays.DisallowPartiallyKeyed
: Disallows partially keyed arrays (thanks to @bkdotcom)
🔧 Improvements
- Object shapes support
- Improved support for arrays in
array()
style (thanks to @bkdotcom) - Support for
phpstan/phpdoc-parser
1.18
8.9.2
8.9.1
8.9.0
🆕 New sniffs
SlevomatCodingStandard.Classes.EnumCaseSpacing
: Checks that there is a certain number of blank lines between enum casesSlevomatCodingStandard.Classes.RequireSelfReference
: Requiresself
for local referenceSlevomatCodingStandard.Variables.DisallowVariableVariable
: Disallows use of variable variablesSlevomatCodingStandard.ControlStructures.DisallowTrailingMultiLineTernaryOperator
: Ternary operator has to be reformatted when the operator is not leading the line (thanks to @esserj)SlevomatCodingStandard.Arrays.AlphabeticallySortedByKeys
: Enforces natural sorting of array definitions by key in multi-line arrays (thanks to @bkdotcom)
🔧 Improvements
- Support for
phpstan/phpdoc-parser
1.16 @phpcsSuppress
can be with comment- Support for
non-falsy-string
,list
andnon-empty-list
type hints SlevomatCodingStandard.Arrays.TrailingArrayComma
: Support for "legacy"array()
syntax (thanks to @bkdotcom)SlevomatCodingStandard.Complexity.Cognitive
: DeprecatemaxComplexity
and implementwarningThreshold
anderrorThreshold
options (thanks to @bkdotcom)SlevomatCodingStandard.Attributes.AttributeAndTargetSpacing
: New optionallowOnSameLine
(thanks to @stlrnz)SlevomatCodingStandard.Classes.RequireMultiLineMethodSignature
: New optionminParameterCount
(thanks to @janedbal)
🐛 Fixes
SlevomatCodingStandard.Namespaces.AlphabeticallySortedUses
: Fixer should not remove doc commentsSlevomatCodingStandard.ControlStructures.EarlyExit
: Fixed detection of useless elseSlevomatCodingStandard.Variables.UselessVariable
: Fixed false positiveSlevomatCodingStandard.PHP.OptimizedFunctionsWithoutUnpacking
: Fixed false positive with first class callableSlevomatCodingStandard.Classes.RequireConstructorPropertyPromotion
: Fixes using prefixed var phpdoc (thanks to @franmomu)
8.8.0
🔧 Improvements
- Support for unsealed array shapes
- Allow for the 1.0.0 version of the Composer PHPCS plugin (thanks to @jrfnl)
🐛 Fixes
SlevomatCodingStandard.Classes.RequireAbstractOrFinal
: Fixed false positive for readonly classes- Fix typo in exception message (thanks to @jslmorrison)
8.7.1
8.7.0
🔧 Improvements
- Support for
phpstan/phpdoc-parser
1.15 - Support for
phpstan/phpdoc-parser
1.14 SlevomatCodingStandard.Attributes.AttributesOrder
: New optionorderAlphabetically
SlevomatCodingStandard.Attributes.AttributesOrder
: Attributes could be ordered by mask (thanks to @alexndlm)
🐛 Fixes
SlevomatCodingStandard.Attributes.AttributeAndTargetSpacing
: Fixed fixer
8.6.4
🔧 Improvements
- Improved annotations parsing
SlevomatCodingStandard.Classes.ClassConstantVisibility
: Added support for traits with constantsSlevomatCodingStandard.Classes.ConstantSpacing
: Added support for traits with constants
🐛 Fixes
SlevomatCodingStandard.Attributes.DisallowAttributesJoining
: Fix for attribute with trailing comma (thanks to @javer)