Skip to content

Commit

Permalink
Merge pull request #40 from aligent/fix/39-multiple-resources-endpoint
Browse files Browse the repository at this point in the history
Fix fatal error in getAllPages() on PHP 7
  • Loading branch information
jswift authored Mar 24, 2021
2 parents 347131e + 98bbfd8 commit d4989ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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.
Fix issue with all batch operations under PHP 7.4
2 changes: 1 addition & 1 deletion src/BigCommerce/Api/Generic/BatchUpdateResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d4989ff

Please sign in to comment.