refactor: StreamInterface::close() should not return anything
This commit is contained in:
parent
5e9768e0e7
commit
b61287523d
1 changed files with 2 additions and 2 deletions
|
@ -60,11 +60,11 @@ class YoutubeChunkStream implements StreamInterface
|
||||||
/**
|
/**
|
||||||
* Closes the stream and any underlying resources.
|
* Closes the stream and any underlying resources.
|
||||||
*
|
*
|
||||||
* @return mixed
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function close()
|
public function close()
|
||||||
{
|
{
|
||||||
return $this->response->getBody()->close();
|
$this->response->getBody()->close();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue