Skip to content

Commit

Permalink
Merge pull request #27 from vojtasvoboda/fix/missing_sprintf
Browse files Browse the repository at this point in the history
Add missing sprintf function
  • Loading branch information
MiroslavHlavka authored May 13, 2020
2 parents 930f2c0 + 43aaa5c commit 98ffefc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ShopCertification.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public function addProductItemId($productItemId)

if (array_search($productItemId, $this->productItemIds) !== false) {
throw new DuplicateProductItemIdException(
'The productItemId "%s" was already added. Please check the implementation.'
sprintf('The productItemId "%s" was already added. Please check the implementation.', $productItemId)
);
}

Expand Down

0 comments on commit 98ffefc

Please sign in to comment.