Google\Cloud\Datastore\Blob::get PHP Method

get() public method

Example: $value = $blob->get();
public get ( ) : Psr\Http\Message\StreamInterface
return Psr\Http\Message\StreamInterface
    public function get()
    {
        return $this->value;
    }

Usage Example

 public function testToString()
 {
     $blob = new Blob('hello world');
     $this->assertEquals((string) $blob->get(), (string) $blob);
 }