aboutsummaryrefslogtreecommitdiff
path: root/engine/classes/XMLRPCParameter.php
blob: 5fac3320177a7171329ec2f6b60b4077942a0c1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
/**
 * Superclass for all RPC parameters.
 *
 * @package    Elgg.Core
 * @subpackage XMLRPC
 */
abstract class XMLRPCParameter {
	protected $value;

	/**
	 * Set initial values
	 */
	function __construct() { }

}