Skip to content

Commit db2e2e7

Browse files
authored
Merge pull request #234 from magento-gl/gl_pr_arrows_codingstandard_jul28_2023
Arrows Team - Bugfix delivery
2 parents 99e3ae2 + a7257ac commit db2e2e7

File tree

5 files changed

+35
-24
lines changed

5 files changed

+35
-24
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,15 +6,15 @@
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
"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.15.10",
17+
"rector/rector": "0.17.12",
1818
"symfony/polyfill": "^1.16",
1919
"phpcsstandards/phpcsutils": "^1.0.5"
2020
},

composer.lock

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

0 commit comments

Comments
 (0)