blob: aba4a4d7ab06377e0f7f2ca4a95737bce9c686b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
/**
* @class XMLRPCParameter Superclass for all RPC parameters.
* @author Curverider Ltd
*/
abstract class XMLRPCParameter
{
protected $value;
function __construct() { }
}
|