diff options
Diffstat (limited to 'engine/classes/XMLRPCBoolParameter.php')
| -rw-r--r-- | engine/classes/XMLRPCBoolParameter.php | 34 |
1 files changed, 22 insertions, 12 deletions
diff --git a/engine/classes/XMLRPCBoolParameter.php b/engine/classes/XMLRPCBoolParameter.php index 3a1b00b88..607841cb8 100644 --- a/engine/classes/XMLRPCBoolParameter.php +++ b/engine/classes/XMLRPCBoolParameter.php @@ -1,20 +1,30 @@ <?php /** - * @class XMLRPCBoolParameter A boolean. - * @author Curverider Ltd + * A boolean. + * + * @package Elgg.Core + * @subpackage XMLRPC */ -class XMLRPCBoolParameter extends XMLRPCParameter -{ - function __construct($value) - { +class XMLRPCBoolParameter extends XMLRPCParameter { + + /** + * New bool parameter + * + * @param bool $value Value + */ + function __construct($value) { parent::__construct(); - - $this->value = (bool)$value; + + $this->value = (bool)$value; } - - function __toString() - { + + /** + * Convert to string + * + * @return string + */ + function __toString() { $code = ($this->value) ? "1" : "0"; return "<value><boolean>{$code}</boolean></value>"; } -}
\ No newline at end of file +} |
