Skip to content
Snippets Groups Projects
Commit 4a9130ab authored by Demian Katz's avatar Demian Katz
Browse files

Added missing property comment; suppress PHPMD warnings about children (ILS...

Added missing property comment; suppress PHPMD warnings about children (ILS driver base class is expected to have many children).
parent cfdf34e7
No related merge requests found
...@@ -35,9 +35,15 @@ namespace VuFind\ILS\Driver; ...@@ -35,9 +35,15 @@ namespace VuFind\ILS\Driver;
* @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki
* @SuppressWarnings(PHPMD.NumberOfChildren)
*/ */
abstract class AbstractBase implements DriverInterface abstract class AbstractBase implements DriverInterface
{ {
/**
* Driver configuration
*
* @var array
*/
protected $config = array(); protected $config = array();
/** /**
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment