diff --git a/classes/streams/YoutubeChunkStream.php b/classes/streams/YoutubeChunkStream.php index 25c3ea8..09f80dc 100644 --- a/classes/streams/YoutubeChunkStream.php +++ b/classes/streams/YoutubeChunkStream.php @@ -60,11 +60,11 @@ class YoutubeChunkStream implements StreamInterface /** * Closes the stream and any underlying resources. * - * @return mixed + * @return void */ public function close() { - return $this->response->getBody()->close(); + $this->response->getBody()->close(); } /**