Phue\Bridge::setProxyAddress PHP Method

setProxyAddress() public method

Set Proxy address
public setProxyAddress ( string $proxyAddress = SetBridgeConfig::DEFAULT_PROXY_ADDRESS ) : self
$proxyAddress string Proxy address
return self This object
    public function setProxyAddress($proxyAddress = SetBridgeConfig::DEFAULT_PROXY_ADDRESS)
    {
        $this->client->sendCommand(new SetBridgeConfig(array('proxyaddress' => (string) $proxyAddress)));
        $this->attributes->proxyaddress = (string) $proxyAddress;
        return $this;
    }