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

Commit c0168c6

Browse files
Merge pull request #38 from php-http/analysis-zRPr9D
Applied fixes from StyleCI
2 parents b358a10 + e95cc55 commit c0168c6

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

tests/HttpAdapterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ protected function createHttpAdapter()
2020
}
2121

2222
/**
23-
* Returns a handler for the client
23+
* Returns a handler for the client.
2424
*
2525
* @return object
2626
*/

tests/HttpAsyncAdapterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ protected function createHttpAsyncClient()
2020
}
2121

2222
/**
23-
* Returns a handler for the client
23+
* Returns a handler for the client.
2424
*
2525
* @return object
2626
*/

tests/PromiseExceptionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function testGetException()
1717
$promise = $this->getMock('GuzzleHttp\Promise\PromiseInterface');
1818

1919
$adapter = new Promise($promise, $request);
20-
$method = new \ReflectionMethod('Http\Adapter\Guzzle6\Promise', 'handleException');
20+
$method = new \ReflectionMethod('Http\Adapter\Guzzle6\Promise', 'handleException');
2121
$method->setAccessible(true);
2222

2323
$outputException = $method->invoke($adapter, new GuzzleExceptions\ConnectException('foo', $request), $request);

tests/PromiseTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Http\Adapter\Guzzle6\Tests;
44

5-
use GuzzleHttp\Exception as GuzzleExceptions;
65
use GuzzleHttp\Promise\RejectedPromise;
76
use Http\Adapter\Guzzle6\Promise;
87

0 commit comments

Comments
 (0)