Skip to content

Commit 1962c95

Browse files
committed
refactor: sorts imports to appease no linting
1 parent 62a4860 commit 1962c95

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

tests/unit/Providers/Http/HttpTransporterFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
namespace WordPress\AiClient\Tests\Providers\Http;
66

77
use PHPUnit\Framework\TestCase;
8-
use WordPress\AiClient\Providers\Http\HttpTransporterFactory;
98
use WordPress\AiClient\Providers\Http\Contracts\HttpTransporterInterface;
9+
use WordPress\AiClient\Providers\Http\HttpTransporterFactory;
1010

1111
/**
1212
* Tests for HttpTransporterFactory class.

tests/unit/Providers/Http/HttpTransporterTest.php

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

55
namespace WordPress\AiClient\Tests\Providers\Http;
66

7+
use GuzzleHttp\Psr7\HttpFactory;
8+
use GuzzleHttp\Psr7\Response as Psr7Response;
79
use Http\Mock\Client as MockClient;
810
use PHPUnit\Framework\TestCase;
9-
use Psr\Http\Message\ResponseInterface;
1011
use WordPress\AiClient\Providers\Http\DTO\Request;
1112
use WordPress\AiClient\Providers\Http\DTO\Response;
1213
use WordPress\AiClient\Providers\Http\Enums\HttpMethodEnum;
1314
use WordPress\AiClient\Providers\Http\HttpTransporter;
14-
use GuzzleHttp\Psr7\Response as Psr7Response;
15-
use GuzzleHttp\Psr7\HttpFactory;
1615

1716
/**
1817
* Tests for HttpTransporter class.

0 commit comments

Comments
 (0)