Fxmlrpc\Proxy::__get PHP Method

__get() public method

Returns namespace specific Proxy instance
public __get ( string $namespace ) : Proxy
$namespace string
return Proxy
    public function __get($namespace)
    {
        $namespace = $this->prependNamespace($namespace);
        if (!isset($this->proxies[$namespace])) {
            $this->proxies[$namespace] = new static($this->client, $this->namespaceSeparator, $namespace);
        }
        return $this->proxies[$namespace];
    }