_type = self::XMLRPC_TYPE_INTEGER; $this->_value = (int)$value; // Make sure this value is integer } /** * Return the value of this object, convert the XML-RPC native integer value into a PHP integer * * @return int */ public function getValue() { return $this->_value; } }