Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions lib/AuthHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,14 @@ public static function buildQueryString($data)
*
* @throws SdkException if SharedSecret is not provided or hmac is not found in the url parameters
*
* @param bool|array $data The query params array
* @return bool
*/
public static function verifyShopifyRequest()
public static function verifyShopifyRequest($data = false)
{
$data = $_GET;
if ($data === false) {
$data = $_GET;
}

if(!isset(ShopifySDK::$config['SharedSecret'])) {
throw new SdkException("Please provide SharedSecret while configuring the SDK client.");
Expand Down