diff options
Diffstat (limited to 'engine/classes/XMLRPCResponse.php')
-rw-r--r-- | engine/classes/XMLRPCResponse.php | 67 |
1 files changed, 55 insertions, 12 deletions
diff --git a/engine/classes/XMLRPCResponse.php b/engine/classes/XMLRPCResponse.php index 22fd9d421..2a0319431 100644 --- a/engine/classes/XMLRPCResponse.php +++ b/engine/classes/XMLRPCResponse.php @@ -1,28 +1,71 @@ <?php /** - * @class XMLRPCResponse XML-RPC Response. + * XML-RPC Response. + * + * @package Elgg.Core + * @subpackage XMLRPC */ -abstract class XMLRPCResponse -{ +abstract class XMLRPCResponse { /** An array of parameters */ protected $parameters = array(); - + /** * Add a parameter here. * * @param XMLRPCParameter $param The parameter. + * + * @return void */ - public function addParameter(XMLRPCParameter $param) - { - if (!is_array($this->parameters)) + public function addParameter(XMLRPCParameter $param) { + if (!is_array($this->parameters)) { $this->parameters = array(); - + } + $this->parameters[] = $param; } - public function addInt($value) { $this->addParameter(new XMLRPCIntParameter($value)); } - public function addString($value) { $this->addParameter(new XMLRPCStringParameter($value)); } - public function addDouble($value) { $this->addParameter(new XMLRPCDoubleParameter($value)); } - public function addBoolean($value) { $this->addParameter(new XMLRPCBoolParameter($value)); } + /** + * Add an integer + * + * @param int $value Value + * + * @return void + */ + public function addInt($value) { + $this->addParameter(new XMLRPCIntParameter($value)); + } + + /** + * Add a string + * + * @param string $value Value + * + * @return void + */ + public function addString($value) { + $this->addParameter(new XMLRPCStringParameter($value)); + } + + /** + * Add a double + * + * @param int $value Value + * + * @return void + */ + public function addDouble($value) { + $this->addParameter(new XMLRPCDoubleParameter($value)); + } + + /** + * Add a boolean + * + * @param bool $value Value + * + * @return void + */ + public function addBoolean($value) { + $this->addParameter(new XMLRPCBoolParameter($value)); + } }
\ No newline at end of file |