Documentation

Horde_Rpc_Soap_Caller
in package

Table of Contents

$_allowedMethods  : array<string|int, mixed>
List of method names to allow.
__call()  : mixed
Will be registered as the handler for all methods called in the SOAP server and will call the appropriate function through the registry.
__construct()  : mixed

Properties

$_allowedMethods

List of method names to allow.

protected array<string|int, mixed> $_allowedMethods = array()

Methods

__call()

Will be registered as the handler for all methods called in the SOAP server and will call the appropriate function through the registry.

public __call(string $method, array<string|int, mixed> $params) : mixed
Parameters
$method : string

The name of the method called by the RPC request.

$params : array<string|int, mixed>

The passed parameters.

Tags
todo

PEAR SOAP operates on a copy of this object at some unknown point and therefore doesn't have access to instance variables if they're set here. Instead, globals are used to track the method name and args for the logging code. Once this is PHP 5-only, the globals can go in favor of instance variables.

access

private

Return values
mixed

The result of the called registry method.

__construct()

public __construct([mixed $params = array() ]) : mixed
Parameters
$params : mixed = array()
Return values
mixed

Search results