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
Return values
mixed —The result of the called registry method.
__construct()
public
__construct([mixed $params = array() ]) : mixed
Parameters
- $params : mixed = array()