Skip to content

Commit 5f11c7a

Browse files
committed
Remove alias for http client
1 parent 471a726 commit 5f11c7a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/KeeneticClient.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace PhpClient\KeeneticRouter;
66

7-
use GuzzleHttp\Client as HttpClient;
7+
use GuzzleHttp\Client;
88
use GuzzleHttp\Cookie\FileCookieJar;
99
use GuzzleHttp\Exception\GuzzleException;
1010
use GuzzleHttp\Psr7\Request;
@@ -18,7 +18,7 @@
1818

1919
final readonly class KeeneticClient
2020
{
21-
private HttpClient $http;
21+
private Client $http;
2222

2323
public CommonActions $commonActions;
2424

@@ -30,7 +30,7 @@ public function __construct(
3030
private string $login,
3131
private string $password,
3232
) {
33-
$this->http = new HttpClient(
33+
$this->http = new Client(
3434
config: [
3535
'base_uri' => $this->uri,
3636
RequestOptions::COOKIES => $this->fileCookieJar(),

0 commit comments

Comments
 (0)