diff options
author | tailor <cygnus@janrain.com> | 2005-12-28 23:15:38 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2005-12-28 23:15:38 +0000 |
commit | 95b940a4b700a157438b31bb2193ff9646ba951e (patch) | |
tree | 0fe90bb6f74822f993100c88e24ed72b5c13ae7f | |
parent | 08c65c616edc15c9668f1245c6d6d7fadcbb0d3d (diff) | |
download | php-openid-95b940a4b700a157438b31bb2193ff9646ba951e.zip php-openid-95b940a4b700a157438b31bb2193ff9646ba951e.tar.gz php-openid-95b940a4b700a157438b31bb2193ff9646ba951e.tar.bz2 |
[project @ Cleaned up documentation in store source.]
-rw-r--r-- | Net/OpenID/Store/DumbStore.php | 7 | ||||
-rw-r--r-- | Net/OpenID/Store/Interface.php | 1 | ||||
-rw-r--r-- | Net/OpenID/Store/MemCacheStore.php | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/Net/OpenID/Store/DumbStore.php b/Net/OpenID/Store/DumbStore.php index c996465..62f0185 100644 --- a/Net/OpenID/Store/DumbStore.php +++ b/Net/OpenID/Store/DumbStore.php @@ -11,9 +11,12 @@ * @package OpenID * @author JanRain, Inc. <openid@janrain.com> * @copyright 2005 Janrain, Inc. - * @license: http://www.gnu.org/copyleft/lesser.html LGPL + * @license http://www.gnu.org/copyleft/lesser.html LGPL */ +/** + * Import the interface for creating a new store class. + */ require('Interface.php'); require('Net/OpenID/CryptUtil.php'); @@ -26,6 +29,8 @@ require('Net/OpenID/CryptUtil.php'); * * Most of the methods of this class are implementation details. * Users of this class need to worry only about the constructor. + * + * @package OpenID */ class Net_OpenID_DumbStore extends Net_OpenID_OpenIDStore { diff --git a/Net/OpenID/Store/Interface.php b/Net/OpenID/Store/Interface.php index 4a490b4..8b742f3 100644 --- a/Net/OpenID/Store/Interface.php +++ b/Net/OpenID/Store/Interface.php @@ -19,6 +19,7 @@ * mechanisms that the OpenID library needs, for both servers and * consumers. * + * @package OpenID * @author JanRain, Inc. <openid@janrain.com> */ class Net_OpenID_OpenIDStore { diff --git a/Net/OpenID/Store/MemCacheStore.php b/Net/OpenID/Store/MemCacheStore.php index 7f6b633..cad1c02 100644 --- a/Net/OpenID/Store/MemCacheStore.php +++ b/Net/OpenID/Store/MemCacheStore.php @@ -11,7 +11,7 @@ * @package OpenID * @author JanRain, Inc. <openid@janrain.com> * @copyright 2005 Janrain, Inc. - * @license: http://www.gnu.org/copyleft/lesser.html LGPL + * @license http://www.gnu.org/copyleft/lesser.html LGPL * */ |