Skip to content
This repository was archived by the owner on Jan 6, 2024. It is now read-only.

Removed unused use statements #9

Merged
merged 1 commit into from
Oct 30, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions src/Guzzle6HttpAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,11 @@
use GuzzleHttp\Client;
use GuzzleHttp\ClientInterface;
use GuzzleHttp\Exception\RequestException;
use GuzzleHttp\Pool;
use Http\Client\Exception\BatchException;
use Http\Client\Exception\HttpException;
use Http\Client\Exception\NetworkException;
use Http\Client\Exception;
use Http\Client\HttpClient;
use Http\Client\Utils\BatchResult;
use Psr\Http\Message\RequestInterface;
use Psr\Http\Message\ResponseInterface;

/**
* @author David de Boer <[email protected]>
Expand All @@ -35,7 +31,7 @@ class Guzzle6HttpAdapter implements HttpClient
private $client;

/**
* @param ClientInterface|null $client Guzzle client
* @param ClientInterface|null $client Guzzle client
*/
public function __construct(ClientInterface $client = null)
{
Expand All @@ -55,7 +51,7 @@ public function sendRequest(RequestInterface $request)
}

/**
* Converts a Guzzle exception into an Httplug exception
* Converts a Guzzle exception into an Httplug exception.
*
* @param RequestException $exception
*
Expand Down