Releases: webimpress/coding-standard
coding-standard 1.1.6
Added
- Nothing.
Changed
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
coding-standard 1.1.5
Added
- Nothing.
Changed
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #93 fixes importing FQCN when namespace is in use in
PHP\DisallowFqn
.
coding-standard 1.1.4
Added
- Nothing.
Changed
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #90 fixes false-positive in
Formatting\RedundantParentheses
sniff when using nested ternary withinstanceof
condition.
coding-standard 1.1.3
coding-standard 1.1.2
Added
- Nothing.
Changed
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
-
#74 fixes false-positive in
Namespaces\UnusedUseStatement
for multiple trait usages. -
#75 allows
null
value for properties with nullable type declaration (PHP 7.4+). -
#76 fixes recognising annotations in property PHPDocs:
Commenting\TagWithType
sniff. -
#78 fixes false-positive for mixed type in PHPDoc return tag:
Functions\ReturnType
sniff.
coding-standard 1.1.1
Added
- Nothing.
Changed
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #70 fixes
Namespaces\AlphabeticallySortedUses
sniff to not remove additional content between use statements.
coding-standard 1.1.0
Added
-
#35 adds
PHP\StaticCallback
sniff which detects closures and check if these can be marked as static -
#36 adds
PHP\DisallowCurlyOffsetAccessBrace
sniff which detects array and string offset access using curly brackets.
This functionality is deprecated as of PHP 7.4 so sniff can be useful when providing compatibility with PHP 7.4. -
#38 adds
ControlStructures\RedundantCase
sniff which detects redundant cases within a switch control structure -
#41 adds
ControlStructures\DefaultAsLast
sniff which requiresdefault
case to be last case in a switch control structure -
#39 adds
Arrays\DuplicateKey
sniff which detects duplicated keys in arrays -
#42 adds requiring camelCase names for class members and variables used in strings - extended sniff
NamingConventions\ValidVariableName
.
Disallowed are two capital letters next to each other (strict mode). -
#60 extends
Classes\TraitUsage
sniff to check if traits declarations are on the top of the class.
Traits must be specified before constants, properties and methods. -
#45 adds
Classes\ConstBeforeProperty
sniff to require constant definitions in classes and interfaces before properties and methods -
#46 adds
Classes\PropertyBeforeMethod
sniff to require property definitions in classes before methods -
#47 adds
Commenting\TagName
sniff which checks if PHPDoc tags have additional characters at the end of the name.
By default:
and;
are disallowed and removed by fixer, but the list of disallowed characters can be configured by optiondisallowedEndChars
-
#48 adds configuration option
nullPosition
toCommenting\TagWithType
sniff. Default value isfirst
to keep backward compatibility.
The other allowed value islast
so thennull
values in type list is at the last position. -
#49 adds
Commenting\DisallowEmptyComment
sniff to detect empty comments and multiple empty lines in comments -
#50 adds check for open and close of doc block comment in
Commenting\DocComment
.
Only short version is allowed:/**
and*/
. Additional asterisk are disallowed. -
#51 adds check for blank lines and comments before arrow in arrays in
Array\Format
sniff.
Arrow must be after the index value, can be in new line, but any additional lines or comments are disallowed. -
#54 adds
Namespaces\UniqueImport
sniff to detect if class/function/constant is imported only once.
Sniff checks also if the name is used only once. The same name can be used for class/function/constant, and constant names are case sensitive. -
#37 adds additional sniffs to
WebimpressCodingStandard
ruleset:Generic.ControlStructures.DisallowYodaConditions
,Squiz.Operators.IncrementDecrementUsage
,Squiz.PHP.DisallowMultipleAssignments
(withSquiz.PHP.DisallowMultipleAssignments.FoundInControlStructure
exclusion).
-
#59 extends
Commenting\DocComment
sniff to check if every line of DocBlock comment starts with*
-
#53 adds support for use groups in
Namespaces\UnusedUseStatement
sniff -
#58 adds property type declaration (PHP 7.4+). The following sniffs are affected:
Commenting\PropertyAnnotation
- ensure that type is skipped when detecting the comment before property,Commenting\VariableComment
- add multiple checks to ensure type declaration is consistent with type provided in PHPDoc (@var
tag). In case type declaration is provided and PHPDoc does not contain any additional information,@var
tag can be omitted.
-
#62 adds support for
Iterator
type inFunctions\Param
andFunctions\ReturnType
sniffs -
#62 adds check for return type of function with
yield
. Generators may only declare a return type ofGenerator
,Iterator
,Traversable
oriterable
. -
#63 adds ability to align array arrows when in new line. To use it, there is an example configuration:
// configuration of double arrow alignment WebimpressCodingStandard.Arrays.DoubleArrow.maxPadding = 50 WebimpressCodingStandard.Arrays.DoubleArrow.ignoreNewLineArrayArrow = false // ignore indent or double arrow when at the beginning of the line WebimpressCodingStandard.WhiteSpace.ScopeIndent.ignoreNewLineArrayArrow = true // ignore spacing before double arrow (so we can have more than one space) WebimpressCodingStandard.WhiteSpace.OperatorAndKeywordSpacing.ignoreSpacingBeforeAssignments = true
-
#67 adds support for PHP 7.4 arrow functions.
Changed
-
#42 changes
NamingConventions\ValidVariableName
to require variable names be in strict camelCase. It means two capital letters next to each other are not allowed. -
#44 changes
PSR1.Methods.CamelCapsMethodName
withGeneric.NamingConventions.CamelCapsFunctionName
so from now method names must be in strict camelCas. It means two capital letters next to each other are not allowed. -
#37 updates the
squizlabs/php_codesniffer
dependency to^3.5.2
-
#61 replaces
Squiz.WhiteSpace.OperatorSpacing
withWebimpressCodingStandard.WhiteSpace.OperatorAndKeywordSpacing
sniff.
This sniff still extendsSquiz.WhiteSpace.OperatorSpacing
but check additional tokens:as
andinsteadof
and Logical Operators.
It also disallows mor then one empty line before operators, and foras
,insteadof
, andinstanceof
requires single space before and after.
Deprecated
- Nothing.
Removed
- #42 excludes
PSR2.Classes.PropertyDeclaration.Underscore
check, as it is now covered byNamingConventions\ValidVariableName
sniff
Fixed
coding-standard 1.0.6
Added
- Nothing.
Changed
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
-
#43 fixes
WhiteSpace\ScopeIndent
sniff - case with object calls within ternary operator -
#40 fixes
PHP\RedundantSemicolon
sniff to remove redundant semicolon after colon and goto label -
#55 fixes
Namespaces\AlphabeticallySortedUses
sniff to work with files without namespaces -
#56 fixes Annotations sniffs for specific cases:
Commenting\ClassAnnotation
sniff -final
classes.Commenting\MethodAnnotation
sniff -final
methods.Commenting\PropertyAnnotation
sniff - properties defined withvar
.
-
#57 fixes parsing content of
@param
and@var
tags with multiple spaces before variable name. Affects the following sniffs:Commenting\TagWithType
,Functions\Param
.
coding-standard 1.0.5
Added
- Nothing.
Changed
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #34 fixes removing unused imports in files without namespaces
coding-standard 1.0.4
Added
- Nothing.
Changed
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.