diff options
Diffstat (limited to 'engine/classes/XMLRPCIntParameter.php')
-rw-r--r-- | engine/classes/XMLRPCIntParameter.php | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/engine/classes/XMLRPCIntParameter.php b/engine/classes/XMLRPCIntParameter.php index 2305a66a7..1029d855b 100644 --- a/engine/classes/XMLRPCIntParameter.php +++ b/engine/classes/XMLRPCIntParameter.php @@ -1,19 +1,19 @@ -<?php
-/**
- * @class XMLRPCIntParameter An Integer.
- * @author Curverider Ltd
- */
-class XMLRPCIntParameter extends XMLRPCParameter
-{
- function __construct($value)
- {
- parent::__construct();
-
- $this->value = (int)$value;
- }
-
- function __toString()
- {
- return "<value><i4>{$this->value}</i4></value>";
- }
-}
+<?php +/** + * @class XMLRPCIntParameter An Integer. + * @author Curverider Ltd + */ +class XMLRPCIntParameter extends XMLRPCParameter +{ + function __construct($value) + { + parent::__construct(); + + $this->value = (int)$value; + } + + function __toString() + { + return "<value><i4>{$this->value}</i4></value>"; + } +} |