@@ -6,18 +6,18 @@ |
||
6 | 6 | namespace Padosoft\HTTPClient; |
7 | 7 | |
8 | 8 | |
9 | -use Padosoft\HTTPClient\Response; |
|
10 | -use Psr\Log\LoggerInterface; |
|
11 | -use Psr\Log\LogLevel; |
|
12 | 9 | use GuzzleHttp\Client; |
13 | 10 | use GuzzleHttp\Exception; |
11 | +use GuzzleHttp\Exception\BadResponseException; |
|
14 | 12 | use GuzzleHttp\Exception\ClientException; |
13 | +use GuzzleHttp\Exception\ConnectException; |
|
15 | 14 | use GuzzleHttp\Exception\RequestException; |
16 | -use GuzzleHttp\Exception\BadResponseException; |
|
17 | 15 | use GuzzleHttp\Exception\ServerException; |
18 | 16 | use GuzzleHttp\Exception\TooManyRedirectsException; |
19 | -use GuzzleHttp\Exception\ConnectException; |
|
20 | 17 | use GuzzleHttp\Exception\TransferException; |
18 | +use Padosoft\HTTPClient\Response; |
|
19 | +use Psr\Log\LogLevel; |
|
20 | +use Psr\Log\LoggerInterface; |
|
21 | 21 | |
22 | 22 | /** |
23 | 23 | * Class HTTPClient |