IXR_ClientMulticall::addCall( $args )

In this article

Source

function addCall( ...$args )
{
    $methodName = array_shift($args);
    $struct = array(
        'methodName' => $methodName,
        'params' => $args
    );
    $this->calls[] = $struct;
}

Changelog

VersionDescription
5.5.0Formalized the existing ...$args parameter by adding it to the function signature.
1.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.