diff options
author | tailor <cygnus@janrain.com> | 2006-01-03 22:23:06 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2006-01-03 22:23:06 +0000 |
commit | 82a1dc67a3e3326b1b5e2096b1f37d9cf5eb696d (patch) | |
tree | 6994b638efeb6d70e00c1275556a8fdcbb23ea45 | |
parent | dc9d34aceb390df8ecfb54f266945101432b925d (diff) | |
download | php-openid-82a1dc67a3e3326b1b5e2096b1f37d9cf5eb696d.zip php-openid-82a1dc67a3e3326b1b5e2096b1f37d9cf5eb696d.tar.gz php-openid-82a1dc67a3e3326b1b5e2096b1f37d9cf5eb696d.tar.bz2 |
[project @ Fixed class var syntax error]
-rw-r--r-- | Net/OpenID/Store/Interface.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Net/OpenID/Store/Interface.php b/Net/OpenID/Store/Interface.php index 8b742f3..6b5975f 100644 --- a/Net/OpenID/Store/Interface.php +++ b/Net/OpenID/Store/Interface.php @@ -27,7 +27,7 @@ class Net_OpenID_OpenIDStore { * @var integer The length of the auth key that should be returned * by the getAuthKey method. */ - $AUTH_KEY_LEN = 20; + var $AUTH_KEY_LEN = 20; /** * This method puts an Association object into storage, |