diff options
author | tailor <cygnus@janrain.com> | 2006-01-20 18:50:58 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2006-01-20 18:50:58 +0000 |
commit | 4cdf981ab4a6b73e46ba8ec4538b01169b6d669e (patch) | |
tree | 3cbfed9c786831cf4d14a30b187f53f7e9dc036b | |
parent | c4884390751dd7d13812cfa676593ab9275f00f7 (diff) | |
download | php-openid-4cdf981ab4a6b73e46ba8ec4538b01169b6d669e.zip php-openid-4cdf981ab4a6b73e46ba8ec4538b01169b6d669e.tar.gz php-openid-4cdf981ab4a6b73e46ba8ec4538b01169b6d669e.tar.bz2 |
[project @ Updated documentation for phpdoc]
-rw-r--r-- | Auth/OpenID/Consumer/Consumer.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Auth/OpenID/Consumer/Consumer.php b/Auth/OpenID/Consumer/Consumer.php index 368a96e..a7f978f 100644 --- a/Auth/OpenID/Consumer/Consumer.php +++ b/Auth/OpenID/Consumer/Consumer.php @@ -251,10 +251,29 @@ $_Auth_OpenID_NONCE_LEN = 8; * @package OpenID */ class Auth_OpenID_Consumer { + /** + * This consumer's store object. + */ var $store; + + /** + * @access private + */ var $_use_assocs; + + /** + * This consumer's HTTP fetcher object. + */ var $fetcher; + + /** + * The consumer's mode. + */ var $mode; + + /** + * A boolean indicating whether the consumer is in immediate mode. + */ var $immediate; /** |