Skip to content

Commit 0cc21c6

Browse files
committed
Merge branch 'v1-develop' into v1
2 parents 6b3f9de + c47930b commit 0cc21c6

File tree

10 files changed

+152
-128
lines changed

10 files changed

+152
-128
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ check: checkstyle checkquality test
1010

1111
.PHONY: checkstyle
1212
checkstyle:
13-
PHP_CS_FIXER_IGNORE_ENV=1 vendor-bin/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run --diff --stop-on-violation --allow-risky=yes
13+
vendor-bin/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run --diff --stop-on-violation --allow-risky=yes
1414
vendor-bin/phpcs/vendor/bin/phpcs -s --standard=Magento2 --exclude=Magento2.Security.InsecureFunction,Magento2.Commenting.ClassPropertyPHPDocFormatting,Magento2.Annotation.MethodAnnotationStructure,Magento2.Annotation.MethodArguments,PSR12.Properties.ConstantVisibility --ignore=./vendor/,./vendor-bin/ .
1515
vendor-bin/phpcs/vendor/bin/phpcs -s --standard=PHPCompatibility --runtime-set testVersion 7.0- --ignore=./vendor/,./vendor-bin/,./Test/ .
1616
vendor-bin/phpcs/vendor/bin/phpcs -s --standard=PHPCompatibility --runtime-set testVersion 7.1- ./Test/

Updater/Catalog/Category/UrlKey.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function refresh(string $initiator): array
3333
$storageIdentifier = UrlKeyChecker::STORAGE_IDENTIFIER;
3434

3535
if ($this->metaStorage->isRefreshing($storageIdentifier)) {
36-
$errorMsg = __('We are already refreshing the category url key\'s, just have a little patience 🙂');
36+
$errorMsg = __('We are already refreshing the category url key\'s, just have a little patience');
3737

3838
$this->metaStorage->setErrorMessage($storageIdentifier, (string) $errorMsg);
3939
throw new AlreadyRefreshingException($errorMsg);

Updater/Catalog/Category/UrlPath.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function refresh(string $initiator): array
3333
$storageIdentifier = UrlPathChecker::STORAGE_IDENTIFIER;
3434

3535
if ($this->metaStorage->isRefreshing($storageIdentifier)) {
36-
$errorMsg = __('We are already refreshing the category url path\'s, just have a little patience 🙂');
36+
$errorMsg = __('We are already refreshing the category url path\'s, just have a little patience');
3737

3838
$this->metaStorage->setErrorMessage($storageIdentifier, (string) $errorMsg);
3939
throw new AlreadyRefreshingException($errorMsg);

Updater/Catalog/Product/UrlKey.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function refresh(string $initiator): array
3333
$storageIdentifier = UrlKeyChecker::STORAGE_IDENTIFIER;
3434

3535
if ($this->metaStorage->isRefreshing($storageIdentifier)) {
36-
$errorMsg = __('We are already refreshing the product url key\'s, just have a little patience 🙂');
36+
$errorMsg = __('We are already refreshing the product url key\'s, just have a little patience');
3737

3838
$this->metaStorage->setErrorMessage($storageIdentifier, (string) $errorMsg);
3939
throw new AlreadyRefreshingException($errorMsg);

Updater/Catalog/Product/UrlPath.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function refresh(string $initiator): array
3333
$storageIdentifier = UrlPathChecker::STORAGE_IDENTIFIER;
3434

3535
if ($this->metaStorage->isRefreshing($storageIdentifier)) {
36-
$errorMsg = __('We are already refreshing the product url path\'s, just have a little patience 🙂');
36+
$errorMsg = __('We are already refreshing the product url path\'s, just have a little patience');
3737

3838
$this->metaStorage->setErrorMessage($storageIdentifier, (string) $errorMsg);
3939
throw new AlreadyRefreshingException($errorMsg);

0 commit comments

Comments
 (0)