From adf053e068c31dcff84fd6f75165dc9f9fcd3526 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Wed, 12 Sep 2012 12:42:27 -0400 Subject: [PATCH] Added missing comments/properties. --- .../VuFind/Recommend/AbstractSearchManagerAwareModule.php | 5 +++++ module/VuFind/src/VuFind/Record/Loader.php | 7 +++++++ .../VuFind/src/VuFind/Related/AbstractServiceLocator.php | 5 +++++ 3 files changed, 17 insertions(+) diff --git a/module/VuFind/src/VuFind/Recommend/AbstractSearchManagerAwareModule.php b/module/VuFind/src/VuFind/Recommend/AbstractSearchManagerAwareModule.php index f3fafcc4789..d9b732acf5d 100644 --- a/module/VuFind/src/VuFind/Recommend/AbstractSearchManagerAwareModule.php +++ b/module/VuFind/src/VuFind/Recommend/AbstractSearchManagerAwareModule.php @@ -43,6 +43,11 @@ use Zend\ServiceManager\ServiceLocatorInterface, abstract class AbstractSearchManagerAwareModule implements RecommendInterface, ServiceLocatorAwareInterface { + /** + * Service locator + * + * @var ServiceLocatorInterface + */ protected $serviceLocator; /** diff --git a/module/VuFind/src/VuFind/Record/Loader.php b/module/VuFind/src/VuFind/Record/Loader.php index 8ae367b514e..8c68f0e3a4d 100644 --- a/module/VuFind/src/VuFind/Record/Loader.php +++ b/module/VuFind/src/VuFind/Record/Loader.php @@ -40,6 +40,13 @@ use Zend\ServiceManager\ServiceLocatorAwareInterface, */ class Loader implements ServiceLocatorAwareInterface { + /** + * Service locator + * + * @var ServiceLocatorInterface + */ + protected $serviceLocator; + /** * Temporary method to get instance of object -- TODO: eliminate in place of * service manager after further refactoring. diff --git a/module/VuFind/src/VuFind/Related/AbstractServiceLocator.php b/module/VuFind/src/VuFind/Related/AbstractServiceLocator.php index 84894716e4e..7a24e760158 100644 --- a/module/VuFind/src/VuFind/Related/AbstractServiceLocator.php +++ b/module/VuFind/src/VuFind/Related/AbstractServiceLocator.php @@ -41,6 +41,11 @@ use Zend\ServiceManager\ServiceLocatorInterface, abstract class AbstractServiceLocator implements RelatedInterface, ServiceLocatorAwareInterface { + /** + * Service locator + * + * @var ServiceLocatorInterface + */ protected $serviceLocator; /** -- GitLab