YoastSEO_Vendor\GuzzleHttp\Psr7
Stream::getContents() public Yoast 1.0
{} Это метод класса: Stream{}
Хуков нет.
Возвращает
null
. Ничего.
Использование
$Stream = new Stream(); $Stream->getContents();
Код Stream::getContents() Stream::getContents Yoast 16.1.1
public function getContents()
{
if (!isset($this->stream)) {
throw new \RuntimeException('Stream is detached');
}
$contents = \stream_get_contents($this->stream);
if ($contents === \false) {
throw new \RuntimeException('Unable to read stream contents');
}
return $contents;
}