IXR_ClientMulticall::__construct()publicWP 1.0

PHP5 constructor.

Method of the class: IXR_ClientMulticall{}

No Hooks.

Return

null. Nothing (null).

Usage

$IXR_ClientMulticall = new IXR_ClientMulticall();
$IXR_ClientMulticall->__construct( $server, $path, $port );
$server (required)
-
$path **
-
Default: false
$port **
-
Default: 80

IXR_ClientMulticall::__construct() code WP 6.5.2

function __construct( $server, $path = false, $port = 80 )
{
    parent::IXR_Client($server, $path, $port);
    $this->useragent = 'The Incutio XML-RPC PHP Library (multicall client)';
}