We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a42138 commit db43b70Copy full SHA for db43b70
test/IntercomClientTest.php
@@ -50,9 +50,10 @@ public function testPaginationHelper()
50
$client = new IntercomClient('u', 'p');
51
$client->setClient($http_client);
52
53
- $client->nextPage([
54
- 'next' => 'https://foo.com'
55
- ]);
+ $pages = new stdClass;
+ $pages->next = 'https://foo.com';
+
56
+ $client->nextPage($pages);
57
58
foreach ($container as $transaction) {
59
$host = $transaction['request']->getUri()->getHost();
0 commit comments