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 471a726 commit 5f11c7aCopy full SHA for 5f11c7a
src/KeeneticClient.php
@@ -4,7 +4,7 @@
4
5
namespace PhpClient\KeeneticRouter;
6
7
-use GuzzleHttp\Client as HttpClient;
+use GuzzleHttp\Client;
8
use GuzzleHttp\Cookie\FileCookieJar;
9
use GuzzleHttp\Exception\GuzzleException;
10
use GuzzleHttp\Psr7\Request;
@@ -18,7 +18,7 @@
18
19
final readonly class KeeneticClient
20
{
21
- private HttpClient $http;
+ private Client $http;
22
23
public CommonActions $commonActions;
24
@@ -30,7 +30,7 @@ public function __construct(
30
private string $login,
31
private string $password,
32
) {
33
- $this->http = new HttpClient(
+ $this->http = new Client(
34
config: [
35
'base_uri' => $this->uri,
36
RequestOptions::COOKIES => $this->fileCookieJar(),
0 commit comments