Metaregistrar\EPP\eppInfoHostResponse::getHost PHP Method

getHost() public method

public getHost ( ) : Metaregistrar\EPP\eppHost
return Metaregistrar\EPP\eppHost
    public function getHost()
    {
        $hostname = $this->getHostName();
        $address = $this->getHostAddresses();
        $address = array_keys($address);
        $host = new eppHost($hostname, $address);
        return $host;
    }