Skip to content

Commit

Permalink
ENGCOM-4531: Static tests fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
p-bystritsky committed Mar 20, 2019
1 parent 705416e commit a07956c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,9 @@ public function publishMass($topicName, array $entitiesArray, $groupId = null, $
$operations[] = $operation;
$requestItem->setId($key);
$requestItem->setStatus(ItemStatusInterface::STATUS_ACCEPTED);
$requestItem->setDataHash($this->encryptor->hash($operation->getSerializedData(), Encryptor::HASH_VERSION_SHA256));
$requestItem->setDataHash(
$this->encryptor->hash($operation->getSerializedData(), Encryptor::HASH_VERSION_SHA256)
);
$requestItems[] = $requestItem;
} catch (\Exception $exception) {
$this->logger->error($exception);
Expand Down

0 comments on commit a07956c

Please sign in to comment.