get() public méthode

Example: $value = $int64->get();
public get ( ) : string
Résultat string
 public function testGetsValue()
 {
     $int = '123';
     $int64 = new Int64($int);
     $this->assertEquals($int, $int64->get());
 }