bucket = $bucket; } /** * @return Bucket */ public function getBucket() { return $this->bucket; } /** * @param string */ public function setLocation($location) { $this->location = $location; } /** * @return string */ public function getLocation() { return $this->location; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setStorageClass($storageClass) { $this->storageClass = $storageClass; } /** * @return string */ public function getStorageClass() { return $this->storageClass; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DefaultBucket::class, 'Google_Service_Firebasestorage_DefaultBucket');