File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## 2.0.0 - Unreleased
4
+
5
+ - The HttpAsyncClient now returns a HttpPromise (instead of a Promise)
6
+
7
+ ## 1.1.0 - Unreleased
8
+
9
+ - Added HttpPromise interface to enforce value of rejected and resolved promise
10
+ - Added HttpFulfilledPromise and HttpRejectedPromise which respect the HttpAsyncClient interface
3
11
4
12
## 1.0.0 - 2016-01-26
5
13
Original file line number Diff line number Diff line change 2
2
3
3
namespace Http \Client ;
4
4
5
- use Http \Client \ Promise \HttpPromise ;
5
+ use Http \Promise \Promise ;
6
6
use Psr \Http \Message \RequestInterface ;
7
7
8
8
/**
@@ -19,7 +19,7 @@ interface HttpAsyncClient
19
19
*
20
20
* @param RequestInterface $request
21
21
*
22
- * @return HttpPromise Promise Resolves a PSR-7 Response or fails with an Http\Client\Exception.
22
+ * @return Promise Promise Resolves a PSR-7 Response or fails with an Http\Client\Exception.
23
23
*
24
24
* @throws \Exception If processing the request is impossible (eg. bad configuration).
25
25
*/
You can’t perform that action at this time.
0 commit comments