From 4a9130abef8940eee6f7a3568edfd68c28ca784b Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Wed, 23 Jan 2013 14:35:13 -0500
Subject: [PATCH] Added missing property comment; suppress PHPMD warnings about
 children (ILS driver base class is expected to have many children).

---
 module/VuFind/src/VuFind/ILS/Driver/AbstractBase.php | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/module/VuFind/src/VuFind/ILS/Driver/AbstractBase.php b/module/VuFind/src/VuFind/ILS/Driver/AbstractBase.php
index 2a02e237a65..3417c0959a1 100644
--- a/module/VuFind/src/VuFind/ILS/Driver/AbstractBase.php
+++ b/module/VuFind/src/VuFind/ILS/Driver/AbstractBase.php
@@ -35,9 +35,15 @@ namespace VuFind\ILS\Driver;
  * @author   Andrew S. Nagy <vufind-tech@lists.sourceforge.net>
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki
+ * @SuppressWarnings(PHPMD.NumberOfChildren)
  */
 abstract class AbstractBase implements DriverInterface
 {
+    /**
+     * Driver configuration
+     *
+     * @var array
+     */
     protected $config = array();
 
     /**
-- 
GitLab