Skip to content

Commit

Permalink
Pass $bindings from nextPage() to request() (#147)
Browse files Browse the repository at this point in the history
I'm not sure if `$bindings` is the same as `$postData`.

Resolves: #146
  • Loading branch information
cweiske authored Sep 29, 2023
1 parent c88701d commit d66784a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ODataClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public function get($requestUri, $bindings = [])
*/
public function getNextPage($requestUri, $bindings = [])
{
return $this->request(HttpMethod::GET, $requestUri);
return $this->request(HttpMethod::GET, $requestUri, $bindings);
}

/**
Expand Down

0 comments on commit d66784a

Please sign in to comment.