Skip to content

Commit a07956c

Browse files
committed
ENGCOM-4531: Static tests fix.
1 parent 705416e commit a07956c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/code/Magento/AsynchronousOperations/Model/MassSchedule.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,9 @@ public function publishMass($topicName, array $entitiesArray, $groupId = null, $
143143
$operations[] = $operation;
144144
$requestItem->setId($key);
145145
$requestItem->setStatus(ItemStatusInterface::STATUS_ACCEPTED);
146-
$requestItem->setDataHash($this->encryptor->hash($operation->getSerializedData(), Encryptor::HASH_VERSION_SHA256));
146+
$requestItem->setDataHash(
147+
$this->encryptor->hash($operation->getSerializedData(), Encryptor::HASH_VERSION_SHA256)
148+
);
147149
$requestItems[] = $requestItem;
148150
} catch (\Exception $exception) {
149151
$this->logger->error($exception);

0 commit comments

Comments
 (0)