You appear to be a bot. Output may be restricted
Description
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`.
Usage
rewind_body( $message );
Parameters
- $message
- ( MessageInterface ) required – Message to rewind
Returns
void
Source
File name: wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/functions.php
Lines:
1 to 8 of 8
function rewind_body(\YoastSEO_Vendor\Psr\Http\Message\MessageInterface $message) { $body = $message->getBody(); if ($body->tell()) { $body->rewind(); } }