max = $max; } /** * @return int */ public function getMax() { return $this->max; } /** * @param int */ public function setMin($min) { $this->min = $min; } /** * @return int */ public function getMin() { return $this->min; } public function setProportion($proportion) { $this->proportion = $proportion; } public function getProportion() { return $this->proportion; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Bucket::class, 'Google_Service_PagespeedInsights_Bucket');