IXR_ClientMulticall::__construct() – PHP5 constructor.

You appear to be a bot. Output may be restricted

Description

PHP5 constructor.

Usage

IXR_ClientMulticall::__construct( $server, $path, $port );

Parameters

$server
( mixed ) required
$path
( mixed ) optional
$port
( mixed ) optional default: 80 –

Returns

void

Source

File name: wordpress/wp-includes/IXR/class-IXR-clientmulticall.php
Lines:

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

 View on GitHub View on Trac