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 585fb47 commit 8fb93e9Copy full SHA for 8fb93e9
src/Client/Client.php
@@ -21,9 +21,9 @@ public function __construct()
21
->asJson();
22
}
23
24
- public function get(string $endpoint): Response
+ public function get(string $endpoint, array|string|null $query = null): Response
25
{
26
- return $this->client->get($endpoint);
+ return $this->client->get($endpoint, $query);
27
28
29
public function post(string $endpoint, array $data = []): Response
0 commit comments