We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7808717 commit 48a3d39Copy full SHA for 48a3d39
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