IXR_ClientMulticall::addCall( $args )
Contents
Source
File: wp-includes/IXR/class-IXR-clientmulticall.php
.
View all references
function addCall( ...$args )
{
$methodName = array_shift($args);
$struct = array(
'methodName' => $methodName,
'params' => $args
);
$this->calls[] = $struct;
}
Changelog
Version | Description |
---|---|
5.5.0 | Formalized the existing ...$args parameter by adding it to the function signature. |
1.5.0 | Introduced. |