Metaregistrar\EPP\eppHelloResponse::getServices PHP Method

getServices() public method

Services are returned by EPP greeting (hello)
public getServices ( ) : array
return array of strings
    public function getServices()
    {
        $xpath = $this->xPath();
        $services = $xpath->query('/epp:epp/epp:greeting/epp:svcMenu/epp:objURI');
        $svcs = [];
        foreach ($services as $service) {
            $svcs[] = $service->nodeValue;
        }
        return $svcs;
    }