From ff85518fa8f6dc48ac5dedb4847c6bb24ea35b2f Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Fri, 19 Jun 2015 18:47:01 -0400 Subject: Fix phpdoc comments --- app/Core/HttpClient.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'app/Core/HttpClient.php') diff --git a/app/Core/HttpClient.php b/app/Core/HttpClient.php index 2f280a1e..805c1e5a 100644 --- a/app/Core/HttpClient.php +++ b/app/Core/HttpClient.php @@ -35,9 +35,9 @@ class HttpClient extends Base * Send a POST HTTP request encoded in JSON * * @access public - * @param string $url - * @param array $data - * @param array $headers + * @param string $url + * @param array $data + * @param string[] $headers * @return string */ public function postJson($url, array $data, array $headers = array()) @@ -53,9 +53,9 @@ class HttpClient extends Base * Send a POST HTTP request encoded in www-form-urlencoded * * @access public - * @param string $url - * @param array $data - * @param array $headers + * @param string $url + * @param array $data + * @param string[] $headers * @return string */ public function postForm($url, array $data, array $headers = array()) @@ -71,9 +71,9 @@ class HttpClient extends Base * Make the HTTP request * * @access private - * @param string $url - * @param array $content - * @param array $headers + * @param string $url + * @param string $content + * @param string[] $headers * @return string */ private function doRequest($url, $content, array $headers) -- cgit v1.2.3