Skip to content

Commit 65a4b0c

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into simplify-install-instructions
2 parents 55c28a9 + db2e2e7 commit 65a4b0c

File tree

5 files changed

+36
-25
lines changed

5 files changed

+36
-25
lines changed

Magento2Framework/Sniffs/Header/CopyrightAnotherExtensionsFilesSniff.php

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ class CopyrightAnotherExtensionsFilesSniff implements Sniff
1616

1717
private const COPYRIGHT_MAGENTO_TEXT = 'Copyright © Magento, Inc. All rights reserved.';
1818
private const COPYRIGHT_ADOBE = '/Copyright \d+ Adobe/';
19+
private const COPYRIGHT_ADOBE_TEXT = 'ADOBE CONFIDENTIAL';
1920

2021
/**
2122
* Defines the tokenizers that this sniff is using.
@@ -48,6 +49,7 @@ public function process(File $phpcsFile, $stackPtr)
4849

4950
if (strpos($fileText, self::COPYRIGHT_MAGENTO_TEXT) !== false
5051
|| preg_match(self::COPYRIGHT_ADOBE, $fileText)
52+
|| strpos($fileText, self::COPYRIGHT_ADOBE_TEXT) !== false
5153
) {
5254
return;
5355
}

Magento2Framework/Sniffs/Header/CopyrightGraphQLSniff.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ class CopyrightGraphQLSniff implements Sniff
1616

1717
private const COPYRIGHT_MAGENTO_TEXT = 'Copyright © Magento, Inc. All rights reserved.';
1818
private const COPYRIGHT_ADOBE = '/Copyright \d+ Adobe/';
19+
private const COPYRIGHT_ADOBE_TEXT = 'ADOBE CONFIDENTIAL';
1920

2021
private const FILE_EXTENSION = 'graphqls';
2122

@@ -44,7 +45,9 @@ public function process(File $phpcsFile, $stackPtr)
4445
// @phpcs:ignore Magento2.Functions.DiscouragedFunction.Discouraged
4546
$content = file_get_contents($phpcsFile->getFilename());
4647

47-
if (strpos($content, self::COPYRIGHT_MAGENTO_TEXT) !== false || preg_match(self::COPYRIGHT_ADOBE, $content)) {
48+
if (strpos($content, self::COPYRIGHT_MAGENTO_TEXT) !== false
49+
|| preg_match(self::COPYRIGHT_ADOBE, $content)
50+
|| strpos($content, self::COPYRIGHT_ADOBE_TEXT) !== false) {
4851
return;
4952
}
5053

Magento2Framework/Sniffs/Header/CopyrightSniff.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ class CopyrightSniff implements Sniff
1616

1717
private const COPYRIGHT_MAGENTO_TEXT = 'Copyright © Magento, Inc. All rights reserved.';
1818
private const COPYRIGHT_ADOBE = '/Copyright \d+ Adobe/';
19+
private const COPYRIGHT_ADOBE_TEXT = 'ADOBE CONFIDENTIAL';
1920

2021
/**
2122
* @inheritdoc
@@ -48,7 +49,9 @@ public function process(File $phpcsFile, $stackPtr)
4849
$content = $phpcsFile->getTokens()[$positionComment]['content'];
4950
$adobeCopyrightFound = preg_match(self::COPYRIGHT_ADOBE, $content);
5051

51-
if (strpos($content, self::COPYRIGHT_MAGENTO_TEXT) !== false || $adobeCopyrightFound) {
52+
if (strpos($content, self::COPYRIGHT_MAGENTO_TEXT) !== false ||
53+
$adobeCopyrightFound ||
54+
strpos($content, self::COPYRIGHT_ADOBE_TEXT) !== false) {
5255
return;
5356
}
5457

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"AFL-3.0"
77
],
88
"type": "phpcodesniffer-standard",
9-
"version": "31",
9+
"version": "32",
1010
"require": {
1111
"php": "~8.1.0 || ~8.2.0",
1212
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2 || ^1.0",
@@ -15,7 +15,7 @@
1515
"ext-dom": "*",
1616
"phpcompatibility/php-compatibility": "^9.3",
1717
"squizlabs/php_codesniffer": "^3.6.1",
18-
"rector/rector": "^0.15.10",
18+
"rector/rector": "0.17.12",
1919
"symfony/polyfill": "^1.16",
2020
"phpcsstandards/phpcsutils": "^1.0.5"
2121
},

composer.lock

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

0 commit comments

Comments
 (0)