From 75eddd9ecbb34e89811fa2ba22cd7d59ecd15763 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Thu, 28 Feb 2013 10:01:54 -0500 Subject: [PATCH] Added missing comments. --- module/VuFind/src/VuFind/Auth/Database.php | 11 +++++++++++ module/VuFind/src/VuFind/Auth/ILS.php | 5 +++++ module/VuFind/src/VuFind/Auth/LDAP.php | 11 +++++++++++ 3 files changed, 27 insertions(+) diff --git a/module/VuFind/src/VuFind/Auth/Database.php b/module/VuFind/src/VuFind/Auth/Database.php index f0fa7c1c1ac..b9c6942e91b 100644 --- a/module/VuFind/src/VuFind/Auth/Database.php +++ b/module/VuFind/src/VuFind/Auth/Database.php @@ -43,7 +43,18 @@ use VuFind\Exception\Auth as AuthException, Zend\Crypt\Password\Bcrypt; */ class Database extends AbstractBase { + /** + * Username + * + * @var string + */ protected $username; + + /** + * Password + * + * @var string + */ protected $password; /** diff --git a/module/VuFind/src/VuFind/Auth/ILS.php b/module/VuFind/src/VuFind/Auth/ILS.php index fdbfe22cd77..b05ea77d42a 100644 --- a/module/VuFind/src/VuFind/Auth/ILS.php +++ b/module/VuFind/src/VuFind/Auth/ILS.php @@ -41,6 +41,11 @@ use VuFind\Exception\Auth as AuthException; */ class ILS extends AbstractBase { + /** + * Catalog connection + * + * @var \VuFind\ILS\Connection + */ protected $catalog = null; /** diff --git a/module/VuFind/src/VuFind/Auth/LDAP.php b/module/VuFind/src/VuFind/Auth/LDAP.php index c907870bd3e..4730d240d4f 100644 --- a/module/VuFind/src/VuFind/Auth/LDAP.php +++ b/module/VuFind/src/VuFind/Auth/LDAP.php @@ -41,7 +41,18 @@ use VuFind\Exception\Auth as AuthException; */ class LDAP extends AbstractBase { + /** + * Username + * + * @var string + */ protected $username; + + /** + * Password + * + * @var string + */ protected $password; /** -- GitLab