summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortailor <cygnus@janrain.com>2006-01-20 18:50:58 +0000
committertailor <cygnus@janrain.com>2006-01-20 18:50:58 +0000
commit4cdf981ab4a6b73e46ba8ec4538b01169b6d669e (patch)
tree3cbfed9c786831cf4d14a30b187f53f7e9dc036b
parentc4884390751dd7d13812cfa676593ab9275f00f7 (diff)
downloadphp-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.php19
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;
/**