YoastSEO_Vendor\GuzzleHttp\Psr7
AppendStream::close() public Yoast 1.0
Closes each attached stream.
{@inheritdoc}
{} Это метод класса: AppendStream{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$AppendStream = new AppendStream(); $AppendStream->close();
Код AppendStream::close() AppendStream::close Yoast 15.6.2
public function close()
{
$this->pos = $this->current = 0;
$this->seekable = \true;
foreach ($this->streams as $stream) {
$stream->close();
}
$this->streams = [];
}