We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf90e18 commit af7e94dCopy full SHA for af7e94d
1 file changed
src/API/Verification.php
@@ -23,9 +23,10 @@ public function resolveAccount(ResolveAccountOptions|array $options): array
23
$options = new ResolveAccountOptions($options);
24
}
25
26
- $response = $this->httpClient->get('/bank/resolve', [
27
- 'query' => $options->all()
28
- ]);
+ $params = $options->all();
+ $queryString = http_build_query($params);
+
29
+ $response = $this->httpClient->get("/bank/resolve?{$queryString}");
30
31
return ResponseMediator::getContent($response);
32
@@ -59,4 +60,4 @@ public function resolveCardBin(string $bin): array
59
60
61
62
-}
63
+}
0 commit comments