summaryrefslogtreecommitdiff
path: root/app/Core/HttpClient.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-06-19 18:47:01 -0400
committerFrederic Guillot <fred@kanboard.net>2015-06-19 18:47:01 -0400
commitff85518fa8f6dc48ac5dedb4847c6bb24ea35b2f (patch)
treee217c33fa96ef345de6be65f11ea0fb408ae7ff6 /app/Core/HttpClient.php
parent9de6c71158284f50637de46f10423ac6c63cd149 (diff)
Fix phpdoc comments
Diffstat (limited to 'app/Core/HttpClient.php')
-rw-r--r--app/Core/HttpClient.php18
1 files changed, 9 insertions, 9 deletions
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)