Skip to main content

Zymba Documentation

SOAP.Server

Text
object @SOAP.Server(@Base) {
construct(string $wsdl) {}
bind(function $callback, string $operation): $this {}
bindMethods(...$operations): $this {}
handle() {}
}

SOAP server prototype.

Prototype

Base

Methods

CODE
$this.construct(string $wsdl): void
Parameters
NameTypeValueDefault
wsdlstring""
CODE
$this.bind(function $callback, string $operation): this
Parameters
NameTypeValueDefault
callbackfunctionnull
operationstring""
Returns
TypeValue
$this
CODE
$this.bindMethods(variadic $operations): this
Parameters
NameTypeValueDefault
operationsvariadic...
Returns
TypeValue
$this
CODE
$this.handle(): void