shopify-php-sdk icon indicating copy to clipboard operation
shopify-php-sdk copied to clipboard

PHP SDK for development with the Shopify API

Results 23 shopify-php-sdk issues
Sort by recently updated
recently updated
newest added

Unit tests should be more comprehensive. I was able to break the API request URLs completely, with no indication of it. We should also generate and publish code coverage reports

added missing fields on some objects. Fixed incorrect variables in some methods. All changes are tested and working on a current site.

how to get response data when $obj->create()? > ScriptTagService.php public function update(ScriptTag $scriptTag) { $data = $scriptTag->exportData(); $response = $this->request( '/admin/script_tags/'.$scriptTag->id.'.json', 'PUT', array( 'script_tag' => $data ) ); $scriptTag->setData($response['script_tag']); }...