|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00027 require_once 'Zend/XmlRpc/Value/Scalar.php'; 00028 00029 00037 class Zend_XmlRpc_Value_Nil extends Zend_XmlRpc_Value_Scalar 00038 { 00039 00044 public function __construct() 00045 { 00046 $this->_type = self::XMLRPC_TYPE_NIL; 00047 $this->_value = null; 00048 } 00049 00055 public function getValue() 00056 { 00057 return null; 00058 } 00059 } 00060