@@ -71,6 +71,13 @@ http://pear.php.net/dtd/package-2.0.xsd">
71
71
- PSR-PER has been used to confirm the order of this keyword so it can be applied to PSR2 and PSR12 correctly
72
72
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
73
73
- Squiz.Formatting.OperatorBracket no longer reports false positives in match() structures
74
+ - Documentation has been added for the following sniffs:
75
+ -- PSR2.Files.ClosingTag
76
+ -- PSR2.Methods.FunctionCallSignature
77
+ -- PSR2.Methods.FunctionClosingBrace
78
+ -- Thanks to Atsushi Okui (@blue32a) for the patch
79
+ - Fixed bug #3557 : Squiz.Arrays.ArrayDeclaration will now ignore PHP 7.4 array unpacking when determining whether an array is associative
80
+ -- Thanks to Volker Dusch (@edorian) for the patch
74
81
- Fixed bug #3616 : Squiz.PHP.DisallowComparisonAssignment false positive for PHP 8 match expression
75
82
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
76
83
- Fixed bug #3618 : Generic.WhiteSpace.ArbitraryParenthesesSpacing false positive for return new parent()
@@ -96,10 +103,14 @@ http://pear.php.net/dtd/package-2.0.xsd">
96
103
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
97
104
- Fixed bug #3728 : PHP 8.2 | PSR1/SideEffects: allow for readonly classes
98
105
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
106
+ - Fixed bug #3776 : Generic/JSHint: error when JSHint is not available
107
+ -- Thanks to Dan Wallis (@fredden) for the patch
99
108
- Fixed bug #3777 : Squiz/NonExecutableCode: slew of bug fixes, mostly related to modern PHP
100
109
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
101
110
- Fixed bug #3779 : Squiz/LowercasePHPFunctions + Generic/ForbiddenFunctions: bug fix for class names in attributes
102
111
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
112
+ - Fixed bug #3785 : Squiz/FunctionComment: potential "Uninitialized string offset 0" when a type contains a duplicate pipe symbol
113
+ -- Thanks to Dan Wallis (@fredden) for the patch
103
114
- Fixed bug #3787 : PEAR/Squiz/[MultiLine]FunctionDeclaration: allow for PHP 8.1 new in initializers
104
115
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
105
116
- Fixed bug #3789 : Incorrect tokenization for ternary operator with match inside of it
@@ -1374,9 +1385,12 @@ http://pear.php.net/dtd/package-2.0.xsd">
1374
1385
<file baseinstalldir="PHP/CodeSniffer" name="SwitchDeclarationStandard.xml" role="php" />
1375
1386
</dir>
1376
1387
<dir name="Files">
1388
+ <file baseinstalldir="PHP/CodeSniffer" name="ClosingTagStandard.xml" role="php" />
1377
1389
<file baseinstalldir="PHP/CodeSniffer" name="EndFileNewlineStandard.xml" role="php" />
1378
1390
</dir>
1379
1391
<dir name="Methods">
1392
+ <file baseinstalldir="PHP/CodeSniffer" name="FunctionCallSignatureStandard.xml" role="php" />
1393
+ <file baseinstalldir="PHP/CodeSniffer" name="FunctionClosingBraceStandard.xml" role="php" />
1380
1394
<file baseinstalldir="PHP/CodeSniffer" name="MethodDeclarationStandard.xml" role="php" />
1381
1395
</dir>
1382
1396
<dir name="Namespaces">
0 commit comments