Skip to content

Commit 51d8a04

Browse files
committed
Missed one get request, fixed
1 parent 380cc50 commit 51d8a04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Syntax/SteamApi/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ protected function setUpClient(array $arguments = [])
115115
$parameters = http_build_query($parameters);
116116

117117
// Send the request and get the results
118-
$request = $this->client->get($steamUrl . '?' . $parameters);
118+
$request = new Request('GET', $steamUrl . '?' . $parameters);
119119
$response = $this->sendRequest($request);
120120

121121
// Pass the results back

0 commit comments

Comments
 (0)