diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 28b23ff7..93cb44f3 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,4 +1,3 @@ -### New Features +### Bug Fix -Implement the new (Custom Template Associations)[https://developer.bigcommerce.com/api-reference/store-management/custom-template-associations] -API. \ No newline at end of file +Fix issue with all batch operations under PHP 7.4 diff --git a/src/BigCommerce/Api/Generic/BatchUpdateResource.php b/src/BigCommerce/Api/Generic/BatchUpdateResource.php index f80e2d88..d5c731dc 100644 --- a/src/BigCommerce/Api/Generic/BatchUpdateResource.php +++ b/src/BigCommerce/Api/Generic/BatchUpdateResource.php @@ -10,7 +10,7 @@ trait BatchUpdateResource { abstract public function batchUpdate(array $resources): PaginatedResponse; - abstract public function multipleResourcesEndpoint(): string; + abstract protected function multipleResourcesEndpoint(): string; abstract public function getClient(): Client; protected function maxBatchSize(): int