Skip to content

Commit d66784a

Browse files
authored
Pass $bindings from nextPage() to request() (#147)
I'm not sure if `$bindings` is the same as `$postData`. Resolves: #146
1 parent c88701d commit d66784a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ODataClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ public function get($requestUri, $bindings = [])
238238
*/
239239
public function getNextPage($requestUri, $bindings = [])
240240
{
241-
return $this->request(HttpMethod::GET, $requestUri);
241+
return $this->request(HttpMethod::GET, $requestUri, $bindings);
242242
}
243243

244244
/**

0 commit comments

Comments
 (0)