category = $category; } /** * @return string */ public function getCategory() { return $this->category; } /** * @param string */ public function setValue($value) { $this->value = $value; } /** * @return string */ public function getValue() { return $this->value; } /** * @param string */ public function setVariable($variable) { $this->variable = $variable; } /** * @return string */ public function getVariable() { return $this->variable; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(MySqlVariable::class, 'Google_Service_MigrationCenterAPI_MySqlVariable');