@@ -68,7 +68,6 @@ public static function get($url, $httpHeaders = array())
6868 {
6969 self ::prepareRequest ($ httpHeaders );
7070
71- ShopifySDK::checkApiCallLimit ();
7271 $ response = CurlRequest::get ($ url , self ::$ httpHeaders );
7372
7473 return self ::processResponse ($ response );
@@ -87,7 +86,6 @@ public static function post($url, $dataArray, $httpHeaders = array())
8786 {
8887 self ::prepareRequest ($ httpHeaders , $ dataArray );
8988
90- ShopifySDK::checkApiCallLimit ();
9189 $ response = CurlRequest::post ($ url , self ::$ postDataJSON , self ::$ httpHeaders );
9290
9391 return self ::processResponse ($ response );
@@ -106,7 +104,6 @@ public static function put($url, $dataArray, $httpHeaders = array())
106104 {
107105 self ::prepareRequest ($ httpHeaders , $ dataArray );
108106
109- ShopifySDK::checkApiCallLimit ();
110107 $ response = CurlRequest::put ($ url , self ::$ postDataJSON , self ::$ httpHeaders );
111108
112109 return self ::processResponse ($ response );
@@ -124,7 +121,6 @@ public static function delete($url, $httpHeaders = array())
124121 {
125122 self ::prepareRequest ($ httpHeaders );
126123
127- ShopifySDK::checkApiCallLimit ();
128124 $ response = CurlRequest::delete ($ url , self ::$ httpHeaders );
129125
130126 return self ::processResponse ($ response );
0 commit comments