Google\Cloud\Int64::get PHP Method

get() public method

Example: $value = $int64->get();
public get ( ) : string
return string
    public function get()
    {
        return $this->value;
    }

Usage Example

 public function testGetsValue()
 {
     $int = '123';
     $int64 = new Int64($int);
     $this->assertEquals($int, $int64->get());
 }