YoastSEO_Vendor\GuzzleHttp\Psr7
rewind_body() Yoast 1.0
Attempts to rewind a message body and throws an exception on failure.
The body of the message will only be rewound if a call to tell() returns a value other than 0.
Хуков нет.
Возвращает
Null. Ничего.
Использование
rewind_body( \YoastSEO_Vendor\Psr\Http\Message\MessageInterface $message );
- $message(Messageчислоerface) (обязательный)
- Message to rewind
Код rewind_body() rewind body Yoast 15.6.2
function rewind_body(\YoastSEO_Vendor\Psr\Http\Message\MessageInterface $message)
{
$body = $message->getBody();
if ($body->tell()) {
$body->rewind();
}
}