Auth_OpenID_PAPE_Response::addPolicyURI PHP Method

addPolicyURI() public method

This method is intended to be used by the provider to add a policy that the provider conformed to when authenticating the user.
public addPolicyURI ( $policy_uri )
    function addPolicyURI($policy_uri)
    {
        if (!in_array($policy_uri, $this->auth_policies)) {
            $this->auth_policies[] = $policy_uri;
        }
    }