Google\Cloud\BigQuery\Bytes::type PHP 메소드

type() 공개 메소드

Get the type.
public type ( ) : string
리턴 string
    public function type()
    {
        return ValueMapper::TYPE_BYTES;
    }

Usage Example

예제 #1
0
 public function testGetsType()
 {
     $bytes = new Bytes($this->value);
     $this->assertEquals('BYTES', $bytes->type());
 }