Skip to content

Commit

Permalink
Removed emoji's completely
Browse files Browse the repository at this point in the history
  • Loading branch information
hostep committed Mar 16, 2023
1 parent b2f639b commit dae217e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Updater/Catalog/Category/UrlKey.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function refresh(string $initiator): array
$storageIdentifier = UrlKeyChecker::STORAGE_IDENTIFIER;

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

$this->metaStorage->setErrorMessage($storageIdentifier, (string) $errorMsg);
throw new AlreadyRefreshingException($errorMsg);
Expand Down
2 changes: 1 addition & 1 deletion Updater/Catalog/Category/UrlPath.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function refresh(string $initiator): array
$storageIdentifier = UrlPathChecker::STORAGE_IDENTIFIER;

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

$this->metaStorage->setErrorMessage($storageIdentifier, (string) $errorMsg);
throw new AlreadyRefreshingException($errorMsg);
Expand Down
2 changes: 1 addition & 1 deletion Updater/Catalog/Product/UrlKey.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function refresh(string $initiator): array
$storageIdentifier = UrlKeyChecker::STORAGE_IDENTIFIER;

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

$this->metaStorage->setErrorMessage($storageIdentifier, (string) $errorMsg);
throw new AlreadyRefreshingException($errorMsg);
Expand Down
2 changes: 1 addition & 1 deletion Updater/Catalog/Product/UrlPath.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function refresh(string $initiator): array
$storageIdentifier = UrlPathChecker::STORAGE_IDENTIFIER;

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

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

0 comments on commit dae217e

Please sign in to comment.