diff options
author | tailor <cygnus@janrain.com> | 2006-01-05 20:46:55 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2006-01-05 20:46:55 +0000 |
commit | b5d63edfa89d3bc2428ebf1d616970e867d602b8 (patch) | |
tree | 8ba780f0cc30c88e9151da4d5ce03dd16d49431e | |
parent | 996dc2154e29dc158e2db41ad100f7ce879fad3c (diff) | |
download | php-openid-b5d63edfa89d3bc2428ebf1d616970e867d602b8.zip php-openid-b5d63edfa89d3bc2428ebf1d616970e867d602b8.tar.gz php-openid-b5d63edfa89d3bc2428ebf1d616970e867d602b8.tar.bz2 |
[project @ Added docblocks to be more compliant with PEAR coding guidelines]
-rw-r--r-- | Net/OpenID/Store/SQLStore.php | 13 | ||||
-rw-r--r-- | Tests/Net/OpenID/Association.php | 13 | ||||
-rw-r--r-- | Tests/Net/OpenID/CryptUtil.php | 13 | ||||
-rw-r--r-- | Tests/Net/OpenID/DiffieHellman.php | 14 | ||||
-rw-r--r-- | Tests/Net/OpenID/HMACSHA1.php | 14 | ||||
-rw-r--r-- | Tests/Net/OpenID/KVForm.php | 13 | ||||
-rw-r--r-- | Tests/Net/OpenID/OIDUtil.php | 13 | ||||
-rw-r--r-- | Tests/Net/OpenID/StoreTest.php | 13 | ||||
-rw-r--r-- | Tests/TestDriver.php | 13 |
9 files changed, 119 insertions, 0 deletions
diff --git a/Net/OpenID/Store/SQLStore.php b/Net/OpenID/Store/SQLStore.php index 62a2de0..04945ed 100644 --- a/Net/OpenID/Store/SQLStore.php +++ b/Net/OpenID/Store/SQLStore.php @@ -1,3 +1,16 @@ <?php +/** + * A base class for SQL-backed OpenID stores. + * + * PHP versions 4 and 5 + * + * LICENSE: See the COPYING file included in this distribution. + * + * @package OpenID + * @author JanRain, Inc. <openid@janrain.com> + * @copyright 2005 Janrain, Inc. + * @license http://www.gnu.org/copyleft/lesser.html LGPL + */ + ?> diff --git a/Tests/Net/OpenID/Association.php b/Tests/Net/OpenID/Association.php index 61b9789..8e547c2 100644 --- a/Tests/Net/OpenID/Association.php +++ b/Tests/Net/OpenID/Association.php @@ -1,5 +1,18 @@ <?php +/** + * Tests for the Association implementation. + * + * PHP versions 4 and 5 + * + * LICENSE: See the COPYING file included in this distribution. + * + * @package OpenID + * @author JanRain, Inc. <openid@janrain.com> + * @copyright 2005 Janrain, Inc. + * @license http://www.gnu.org/copyleft/lesser.html LGPL + */ + require_once('PHPUnit.php'); require_once('Net/OpenID/Association.php'); diff --git a/Tests/Net/OpenID/CryptUtil.php b/Tests/Net/OpenID/CryptUtil.php index 8a745ca..98dbe06 100644 --- a/Tests/Net/OpenID/CryptUtil.php +++ b/Tests/Net/OpenID/CryptUtil.php @@ -1,5 +1,18 @@ <?php +/** + * Tests for the CryptUtil functions. + * + * PHP versions 4 and 5 + * + * LICENSE: See the COPYING file included in this distribution. + * + * @package OpenID + * @author JanRain, Inc. <openid@janrain.com> + * @copyright 2005 Janrain, Inc. + * @license http://www.gnu.org/copyleft/lesser.html LGPL + */ + require_once('PHPUnit.php'); require_once('Net/OpenID/CryptUtil.php'); diff --git a/Tests/Net/OpenID/DiffieHellman.php b/Tests/Net/OpenID/DiffieHellman.php index 8e78435..7891b27 100644 --- a/Tests/Net/OpenID/DiffieHellman.php +++ b/Tests/Net/OpenID/DiffieHellman.php @@ -1,5 +1,19 @@ <?php +/** + * Tests for the Diffie-Hellman key exchange implementation in the + * OpenID library. + * + * PHP versions 4 and 5 + * + * LICENSE: See the COPYING file included in this distribution. + * + * @package OpenID + * @author JanRain, Inc. <openid@janrain.com> + * @copyright 2005 Janrain, Inc. + * @license http://www.gnu.org/copyleft/lesser.html LGPL + */ + require_once('PHPUnit.php'); require_once('Net/OpenID/DiffieHellman.php'); diff --git a/Tests/Net/OpenID/HMACSHA1.php b/Tests/Net/OpenID/HMACSHA1.php index 24d56d3..74d85bb 100644 --- a/Tests/Net/OpenID/HMACSHA1.php +++ b/Tests/Net/OpenID/HMACSHA1.php @@ -1,5 +1,19 @@ <?php +/** + * Tests for the HMAC-SHA1 utility functions used by the OpenID + * library. + * + * PHP versions 4 and 5 + * + * LICENSE: See the COPYING file included in this distribution. + * + * @package OpenID + * @author JanRain, Inc. <openid@janrain.com> + * @copyright 2005 Janrain, Inc. + * @license http://www.gnu.org/copyleft/lesser.html LGPL + */ + require_once('PHPUnit.php'); require_once('Net/OpenID/HMACSHA1.php'); diff --git a/Tests/Net/OpenID/KVForm.php b/Tests/Net/OpenID/KVForm.php index 5513898..eb14849 100644 --- a/Tests/Net/OpenID/KVForm.php +++ b/Tests/Net/OpenID/KVForm.php @@ -1,5 +1,18 @@ <?php +/** + * Tests for the KVForm module. + * + * PHP versions 4 and 5 + * + * LICENSE: See the COPYING file included in this distribution. + * + * @package OpenID + * @author JanRain, Inc. <openid@janrain.com> + * @copyright 2005 Janrain, Inc. + * @license http://www.gnu.org/copyleft/lesser.html LGPL + */ + require_once('PHPUnit.php'); require_once('Net/OpenID/KVForm.php'); diff --git a/Tests/Net/OpenID/OIDUtil.php b/Tests/Net/OpenID/OIDUtil.php index 050b386..af29fe0 100644 --- a/Tests/Net/OpenID/OIDUtil.php +++ b/Tests/Net/OpenID/OIDUtil.php @@ -1,5 +1,18 @@ <?php +/** + * Tests for utility functions used by the OpenID library. + * + * PHP versions 4 and 5 + * + * LICENSE: See the COPYING file included in this distribution. + * + * @package OpenID + * @author JanRain, Inc. <openid@janrain.com> + * @copyright 2005 Janrain, Inc. + * @license http://www.gnu.org/copyleft/lesser.html LGPL + */ + require_once('PHPUnit.php'); require_once('Net/OpenID/OIDUtil.php'); diff --git a/Tests/Net/OpenID/StoreTest.php b/Tests/Net/OpenID/StoreTest.php index 3336f5a..ed4d882 100644 --- a/Tests/Net/OpenID/StoreTest.php +++ b/Tests/Net/OpenID/StoreTest.php @@ -1,5 +1,18 @@ <?php +/** + * A test script for the OpenIDStore classes. + * + * PHP versions 4 and 5 + * + * LICENSE: See the COPYING file included in this distribution. + * + * @package OpenID + * @author JanRain, Inc. <openid@janrain.com> + * @copyright 2005 Janrain, Inc. + * @license http://www.gnu.org/copyleft/lesser.html LGPL + */ + require_once('Net/OpenID/Association.php'); require_once('Net/OpenID/CryptUtil.php'); diff --git a/Tests/TestDriver.php b/Tests/TestDriver.php index ea91629..65db1ce 100644 --- a/Tests/TestDriver.php +++ b/Tests/TestDriver.php @@ -1,5 +1,18 @@ <?php +/** + * A driver for the PHP OpenID unit tests. + * + * PHP versions 4 and 5 + * + * LICENSE: See the COPYING file included in this distribution. + * + * @package OpenID + * @author JanRain, Inc. <openid@janrain.com> + * @copyright 2005 Janrain, Inc. + * @license http://www.gnu.org/copyleft/lesser.html LGPL + */ + require_once('PHPUnit.php'); require_once('PHPUnit/GUI/HTML.php'); |