From efc15494898e1955c51e40422a9ed1330c8a5f6b Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Wed, 12 Sep 2012 12:18:44 -0400
Subject: [PATCH] Added missing property declarations.

---
 module/VuFind/src/VuFind/ILS/Driver/NoILS.php    | 7 +++++++
 module/VuFind/src/VuFind/ILS/Driver/Symphony.php | 7 +++++++
 2 files changed, 14 insertions(+)

diff --git a/module/VuFind/src/VuFind/ILS/Driver/NoILS.php b/module/VuFind/src/VuFind/ILS/Driver/NoILS.php
index b9bd25b6791..e48b2691e1a 100644
--- a/module/VuFind/src/VuFind/ILS/Driver/NoILS.php
+++ b/module/VuFind/src/VuFind/ILS/Driver/NoILS.php
@@ -43,6 +43,13 @@ use VuFind\Config\Reader as ConfigReader, VuFind\Exception\ILS as ILSException,
  */
 class NoILS extends AbstractBase implements ServiceLocatorAwareInterface
 {
+    /**
+     * Service locator
+     *
+     * @var ServiceLocatorInterface
+     */
+    protected $serviceLocator;
+
     /**
      * Initialize the driver.
      *
diff --git a/module/VuFind/src/VuFind/ILS/Driver/Symphony.php b/module/VuFind/src/VuFind/ILS/Driver/Symphony.php
index 86473511789..7794f14352d 100644
--- a/module/VuFind/src/VuFind/ILS/Driver/Symphony.php
+++ b/module/VuFind/src/VuFind/ILS/Driver/Symphony.php
@@ -48,6 +48,13 @@ class Symphony extends AbstractBase implements ServiceLocatorAwareInterface
     protected $policyCache = false;
     protected $policies;
 
+    /**
+     * Service locator
+     *
+     * @var ServiceLocatorInterface
+     */
+    protected $serviceLocator;
+
     /**
      * Initialize the driver.
      *
-- 
GitLab