Skip to content

Commit

Permalink
Code style and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Clark committed Aug 8, 2019
1 parent f6643d3 commit 9ff837a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
8 changes: 4 additions & 4 deletions src/Handler/CurlFactory.php
@@ -1,13 +1,13 @@
<?php
namespace GuzzleHttp\Handler;

use GuzzleHttp\Exception\RequestException;
use GuzzleHttp\Exception\ConnectException;
use GuzzleHttp\Promise\FulfilledPromise;
use GuzzleHttp\Psr7;
use GuzzleHttp\Psr7\LazyOpenStream;
use GuzzleHttp\TransferStats;
use GuzzleHttp\Psr7\LazyOpenStream;
use Psr\Http\Message\RequestInterface;
use GuzzleHttp\Promise\FulfilledPromise;
use GuzzleHttp\Exception\ConnectException;
use GuzzleHttp\Exception\RequestException;

/**
* Creates curl resources from a request
Expand Down
11 changes: 5 additions & 6 deletions tests/Handler/CurlFactoryTest.php
@@ -1,15 +1,14 @@
<?php
namespace GuzzleHttp\Test\Handler;

use GuzzleHttp\Handler\CurlFactory;
use GuzzleHttp\Handler\EasyHandle;
use GuzzleHttp\Tests\Server;
use GuzzleHttp\Handler;
use GuzzleHttp\Psr7;
use GuzzleHttp\Handler;
use GuzzleHttp\Tests\Server;
use GuzzleHttp\TransferStats;
use PHPUnit\Framework\Error\Notice;
use Psr\Http\Message\ResponseInterface;
use PHPUnit\Framework\TestCase;
use GuzzleHttp\Handler\EasyHandle;
use GuzzleHttp\Handler\CurlFactory;
use Psr\Http\Message\ResponseInterface;

/**
* @covers \GuzzleHttp\Handler\CurlFactory
Expand Down

0 comments on commit 9ff837a

Please sign in to comment.