Skip to content

Commit 8e870eb

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into psr-control-structure-spacing
2 parents e1621af + bc6b0f6 commit 8e870eb

13 files changed

+188
-24
lines changed

Magento2/Sniffs/Commenting/ClassAndInterfacePHPDocFormattingSniff.php

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ class ClassAndInterfacePHPDocFormattingSniff implements Sniff
2424
* @var string[] List of tags that can not be used in comments
2525
*/
2626
public $forbiddenTags = [
27+
'@author',
2728
'@category',
2829
'@package',
2930
'@subpackage'

Magento2/Sniffs/Less/ClassNamingSniff.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,12 @@ public function process(File $phpcsFile, $stackPtr)
6767
[implode("", $matches[0])]
6868
);
6969
}
70-
if (strpos($className, self::STRING_HELPER_CLASSES_PREFIX, 2) !== false) {
70+
71+
if (
72+
strlen($className) > 1
73+
&& strpos($className, self::STRING_HELPER_CLASSES_PREFIX, 2) !== false
74+
&& !str_starts_with($className, 'admin__')
75+
) {
7176
$phpcsFile->addError(
7277
'CSS class names should be separated with "-" (dash) instead of "_" (underscore)',
7378
$stackPtr,

Magento2/Sniffs/PHP/ShortEchoSyntaxSniff.php

+20-1
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,30 @@ public function process(File $phpcsFile, $stackPtr)
3737

3838
$nextToken = $phpcsFile->findNext(Tokens::$emptyTokens, ($stackPtr + 1), null, true);
3939
if ($tokens[$nextToken]['code'] == T_ECHO) {
40-
$phpcsFile->addWarning(
40+
$fix = $phpcsFile->addFixableWarning(
4141
'Short echo tag syntax must be used; expected "<?=" but found "<?php echo"',
4242
$stackPtr,
4343
'ShortEchoTag'
4444
);
45+
46+
if ($fix) {
47+
$phpcsFile->fixer->beginChangeset();
48+
49+
if (($nextToken - $stackPtr) === 1) {
50+
$phpcsFile->fixer->replaceToken($stackPtr, '<?=');
51+
} else {
52+
$phpcsFile->fixer->replaceToken($stackPtr, '<?= ');
53+
}
54+
55+
for ($i = $stackPtr + 1; $i < $nextToken; $i++) {
56+
if ($tokens[$i]['code'] === T_WHITESPACE) {
57+
$phpcsFile->fixer->replaceToken($i, '');
58+
}
59+
}
60+
61+
$phpcsFile->fixer->replaceToken($nextToken, '');
62+
$phpcsFile->fixer->endChangeset();
63+
}
4564
}
4665
}
4766
}

Magento2/Sniffs/Security/XssTemplateSniff.php

+1
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ public function process(File $phpcsFile, $stackPtr)
135135
$statement = array_shift($this->statements);
136136
$this->detectUnescapedString($statement);
137137
}
138+
$this->hasDisallowedAnnotation = false;
138139
}
139140

140141
/**

Magento2/Tests/Commenting/ClassAndInterfacePHPDocFormattingUnitTest.1.inc

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ class EmptyHandler
6060
* @api is ok here
6161
* @deprecated can be used in this context
6262
* @see is ok here
63-
* @author is actually ok
63+
* @author should not be used
6464
* @category is irrelevant
65-
* @package is not ment to be used
65+
* @package should not be used
6666
* @subpackage does not belong here
6767
*/
6868
class ExampleHandler

Magento2/Tests/Commenting/ClassAndInterfacePHPDocFormattingUnitTest.2.inc

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ interface EmptyHandler
6060
* @api is ok here
6161
* @deprecated can be used in this context
6262
* @see is ok here
63-
* @author is actually ok
63+
* @author should not be used
6464
* @category is irrelevant
65-
* @package is not ment to be used
65+
* @package should not be used
6666
* @subpackage does not belong here
6767
*/
6868
interface ExampleHandler

Magento2/Tests/Commenting/ClassAndInterfacePHPDocFormattingUnitTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public function getWarningList($testFile = '')
2929
35 => 1,
3030
44 => 1,
3131
52 => 1,
32+
63 => 1,
3233
64 => 1,
3334
65 => 1,
3435
66 => 1,

Magento2/Tests/Less/ClassNamingUnitTest.less

+10
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,13 @@
3030
.category-title {
3131
background: green;
3232
}
33+
34+
// @see https://github.com/magento/magento-coding-standard/issues/425
35+
.a {
36+
text-decoration: none;
37+
}
38+
39+
// @see https://github.com/magento/magento-coding-standard/issues/409
40+
.admin__allowed {
41+
background: green;
42+
}

Magento2/Tests/PHP/ShortEchoSyntaxUnitTest.inc

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
<?php $foo = bar; ?>
44

55
<?php echo "foo" ?>
6+
7+
<?php /* @noEscape */ echo 'baz'; ?>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?= "foo" ?>
2+
3+
<?php $foo = bar; ?>
4+
5+
<?= "foo" ?>
6+
7+
<?= /* @noEscape */ 'baz'; ?>

Magento2/Tests/PHP/ShortEchoSyntaxUnitTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public function getWarningList()
2424
{
2525
return [
2626
5 => 1,
27+
7 => 1,
2728
];
2829
}
2930
}

composer.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,16 @@
66
"AFL-3.0"
77
],
88
"type": "phpcodesniffer-standard",
9-
"version": "30",
9+
"version": "31",
1010
"require": {
1111
"php": ">=7.4",
1212
"webonyx/graphql-php": "^15.0",
1313
"ext-simplexml": "*",
1414
"ext-dom": "*",
1515
"phpcompatibility/php-compatibility": "^9.3",
1616
"squizlabs/php_codesniffer": "^3.6.1",
17-
"rector/rector": "^0.14.8"
17+
"rector/rector": "^0.15.10",
18+
"symfony/polyfill": "^1.16"
1819
},
1920
"require-dev": {
2021
"phpunit/phpunit": "^9.5.8"

composer.lock

+132-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)