Auth_Yadis_DiscoveryResult::services PHP Method

services() public method

Returns the list of service objects as described by the XRDS document, if this yadis object represents a successful Yadis discovery.
public services ( ) : array
return array $services An array of {@link Auth_Yadis_Service} objects
    function services()
    {
        if ($this->xrds) {
            return $this->xrds->services();
        }
        return null;
    }