value = \DeliciousBrains\WP_Offload_Media\Gcp\GuzzleHttp\Psr7\stream_for($value); } /** * Get the blob contents as a stream * * Example: * ``` * $value = $blob->get(); * ``` * * @return StreamInterface */ public function get() { return $this->value; } /** * Cast the blob to a string * * @access private * @return string */ public function __toString() { return (string) $this->value; } }