Example: use Google\Cloud\ServiceBuilder; $cloud = new ServiceBuilder(); $bigQuery = $cloud->bigQuery(); $bytes = $bigQuery->bytes('hello world');
Inheritance: implements Google\Cloud\BigQuery\ValueInterface
 public function testToString()
 {
     $bytes = new Bytes($this->value);
     $expected = base64_encode($this->value);
     $this->assertEquals($expected, (string) $bytes);
     $this->assertEquals($expected, $bytes->formatAsString());
 }