Fxmlrpc\Proxy::prependNamespace PHP Method

prependNamespace() protected method

Prepend namespace if set
protected prependNamespace ( string $string ) : string
$string string
return string
    protected function prependNamespace($string)
    {
        if ($this->namespace === null) {
            return $string;
        }
        return $this->namespace . $this->namespaceSeparator . $string;
    }