From 44873f6a05b60105eea46294a3713c063cca6117 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ch=C3=A1bek?= Date: Wed, 29 Jun 2016 12:42:43 +0200 Subject: [PATCH] Adjust example --- examples/basic.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/basic.php b/examples/basic.php index 9b5b5a0..65e17e1 100755 --- a/examples/basic.php +++ b/examples/basic.php @@ -18,9 +18,9 @@ // Set order ID - it helps you track your customers' orders in Heureka shop administration. $shopCertification->setOrderId(1597884); - // Add products using ITEM_ID (your products ID) - you HAVE TO put in all the products which the customer ordered. + // Add products using ITEM_ID (your products ID) $shopCertification->addProductItemId('165899412'); - $shopCertification->addProductItemId('998884614'); + $shopCertification->addProductItemId('abc8884614'); // And finally send the order to our service. $shopCertification->logOrder();