blob: ef950bc147d2ceafc25db32306c0fb764899cda3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
/**
* @class XMLRPCIntParameter An Integer.
*/
class XMLRPCIntParameter extends XMLRPCParameter
{
function __construct($value)
{
parent::__construct();
$this->value = (int)$value;
}
function __toString()
{
return "<value><i4>{$this->value}</i4></value>";
}
}
|