We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ba0ee1 commit e8eea37Copy full SHA for e8eea37
src/HttpAsyncClient.php
@@ -18,6 +18,8 @@ interface HttpAsyncClient
18
* @param RequestInterface $request
19
*
20
* @return Promise
21
+ *
22
+ * @throws \Exception If processing the request is impossible (eg. bad configuration)
23
*/
24
public function sendAsyncRequest(RequestInterface $request);
25
}
src/HttpClient.php
@@ -21,7 +21,8 @@ interface HttpClient
* @return ResponseInterface
- * @throws Exception
+ * @throws Exception If an error happens during processing the request.
26
27
public function sendRequest(RequestInterface $request);
28
0 commit comments