summaryrefslogtreecommitdiffstats
path: root/vendor/fguillot/picofeed/lib/PicoFeed/Client/Stream.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/fguillot/picofeed/lib/PicoFeed/Client/Stream.php')
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Client/Stream.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Client/Stream.php b/vendor/fguillot/picofeed/lib/PicoFeed/Client/Stream.php
index a0058f9b0..32d045cb1 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Client/Stream.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Client/Stream.php
@@ -16,7 +16,7 @@ class Stream extends Client
* Prepare HTTP headers
*
* @access private
- * @return array
+ * @return string[]
*/
private function prepareHeaders()
{
@@ -128,11 +128,11 @@ class Stream extends Client
* Decode body response according to the HTTP headers
*
* @access public
- * @param string $body Raw body
- * @param array $headers HTTP headers
+ * @param string $body Raw body
+ * @param HttpHeaders $headers HTTP headers
* @return string
*/
- public function decodeBody($body, array $headers)
+ public function decodeBody($body, HttpHeaders $headers)
{
if (isset($headers['Transfer-Encoding']) && $headers['Transfer-Encoding'] === 'chunked') {
$body = $this->decodeChunked($body);