Google\Cloud\Storage\Bucket::name PHP 메소드

name() 공개 메소드

Example: echo $bucket->name();
public name ( ) : string
리턴 string
    public function name()
    {
        return $this->identity['bucket'];
    }

Usage Example

예제 #1
0
 public function testGetsName()
 {
     $bucket = new Bucket($this->connection->reveal(), $name = 'bucket');
     $this->assertEquals($name, $bucket->name());
 }
All Usage Examples Of Google\Cloud\Storage\Bucket::name