public function EntityBody::rewind

Rewind to the beginning of the stream

Return value

bool Returns true on success or false on failure

Overrides Stream::rewind

File

drupal/core/vendor/guzzle/http/Guzzle/Http/EntityBody.php, line 73

Class

EntityBody
Entity body used with an HTTP request or response

Namespace

Guzzle\Http

Code

public function rewind() {
  return $this->rewindFunction ? call_user_func($this->rewindFunction, $this) : parent::rewind();
}