name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param int */ public function setNumber($number) { $this->number = $number; } /** * @return int */ public function getNumber() { return $this->number; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Proto2EnumValueDescriptorProto::class, 'Google_Service_ChromePolicy_Proto2EnumValueDescriptorProto');