From 7f9d92a34759116b9dd94ffd7f16a3e2c6835fce Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Tue, 5 Nov 2013 09:44:53 -0500 Subject: [PATCH] Added comments. --- .../VuFind/src/VuFind/ILS/Driver/Polaris.php | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/module/VuFind/src/VuFind/ILS/Driver/Polaris.php b/module/VuFind/src/VuFind/ILS/Driver/Polaris.php index d3931fc13a9..503e2c423fa 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Polaris.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Polaris.php @@ -41,10 +41,39 @@ use VuFind\Config\Reader as ConfigReader, */ class Polaris extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterface { + /** + * Web services host + * + * @var string + */ protected $ws_host; + + /** + * Web services application path + * + * @var string + */ protected $ws_app; + + /** + * Web services ID + * + * @var string + */ protected $ws_api_id; + + /** + * Web services key + * + * @var string + */ protected $ws_api_key; + + /** + * Web services requesting organization ID + * + * @var string + */ protected $ws_requestingorgid; /** -- GitLab