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 39f93cf commit b8dd827Copy full SHA for b8dd827
tests/Endpoint/Accounts/AccountsTest.php
@@ -16,7 +16,7 @@ public function test_it_can_get_accounts()
16
]);
17
18
$response = $sdk->accounts()
19
- ->all();
+ ->get();
20
21
$this->assertIsArray($response);
22
$this->assertArrayHasKey('accounts', $response);
tests/UnbounceTest.php
@@ -26,6 +26,6 @@ public function test_throw_exception_when_unauthorized(): void
26
27
$this->expectException(RequestUnauthorizedException::class);
28
29
- $sdk->accounts()->all();
+ $sdk->accounts()->get();
30
}
31
0 commit comments