Skip to content

Commit

Permalink
Merge pull request #58 from smuzza/patch-1
Browse files Browse the repository at this point in the history
Data passed as incorrect argument to post function
  • Loading branch information
Povilas Kačinskas authored Nov 18, 2019
2 parents e7e8653 + dbb3fe2 commit 25ab7a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Helper/TrustpilotHttpClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function checkStatusAndPost($url, $origin, $data, $storeId)
'code' => $code,
);
}
return $this->post($url, $data, $origin, $storeId);
return $this->post($url, $origin, $data, $storeId);
}

public function postInvitation($key, $storeId, $data = array())
Expand Down

0 comments on commit 25ab7a3

Please sign in to comment.