diff options
author | Wolfy-J <[email protected]> | 2019-01-31 15:11:53 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2019-01-31 15:11:53 +0300 |
commit | 2b33bfc836134ca11fd5d095e1a98899265548fc (patch) | |
tree | ac7cd94644bae416ebfe7f8438c3aa44117e6ed3 /src/HttpClient.php | |
parent | 22f01fa5627d11f00652310abbddd7ba03947771 (diff) |
- added HttpClient for raw message consuming
Diffstat (limited to 'src/HttpClient.php')
-rw-r--r-- | src/HttpClient.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/HttpClient.php b/src/HttpClient.php index 70b46ef5..34ae0e77 100644 --- a/src/HttpClient.php +++ b/src/HttpClient.php @@ -46,11 +46,11 @@ class HttpClient /** * Send response to the application server. * - * @param int $status Http status code - * @param string $body Body of response + * @param int $status Http status code + * @param string $body Body of response * @param string[][] $headers An associative array of the message's headers. Each - * key MUST be a header name, and each value MUST be an array of strings - * for that header. + * key MUST be a header name, and each value MUST be an array of strings + * for that header. */ public function respond(int $status, string $body, $headers = []) { |