IXR_Server::hasMethod()publicWP 1.0

Method of the class: IXR_Server{}

No Hooks.

Return

null. Nothing (null).

Usage

$IXR_Server = new IXR_Server();
$IXR_Server->hasMethod( $method );
$method (required)
-

IXR_Server::hasMethod() code WP 6.5.2

function hasMethod($method)
{
    return in_array($method, array_keys($this->callbacks));
}