blob: f9e04a0733fefb9e8ef8c58e368d2a6b5f68a6ce (
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() { }
}
|