From 363d0bae5bce89be9d01bff738cf64b99b863653 Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Tue, 16 Dec 2014 11:42:48 -0500
Subject: [PATCH] Suppress unnecessary PHPMD warnings.

---
 module/VuFind/src/VuFind/Cover/Generator.php           | 1 +
 module/VuFind/src/VuFind/ILS/Driver/DAIA.php           | 1 +
 module/VuFind/src/VuFind/ILS/Driver/Demo.php           | 1 +
 module/VuFind/src/VuFind/ILS/Driver/VoyagerRestful.php | 1 +
 4 files changed, 4 insertions(+)

diff --git a/module/VuFind/src/VuFind/Cover/Generator.php b/module/VuFind/src/VuFind/Cover/Generator.php
index 73ec22faed5..a990f2eef18 100644
--- a/module/VuFind/src/VuFind/Cover/Generator.php
+++ b/module/VuFind/src/VuFind/Cover/Generator.php
@@ -111,6 +111,7 @@ class Generator
      * @param string $callnumber Callnumber of the book
      *
      * @return string contents of image file
+     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
      */
     protected function generateSolid($title, $author, $callnumber)
     {
diff --git a/module/VuFind/src/VuFind/ILS/Driver/DAIA.php b/module/VuFind/src/VuFind/ILS/Driver/DAIA.php
index 3067fec7ffe..c7ddc7cdaba 100644
--- a/module/VuFind/src/VuFind/ILS/Driver/DAIA.php
+++ b/module/VuFind/src/VuFind/ILS/Driver/DAIA.php
@@ -112,6 +112,7 @@ class DAIA extends AbstractBase implements \Zend\Log\LoggerAwareInterface
      * @param array  $details Item details from getHoldings return array
      *
      * @return string         URL to ILS's OPAC's place hold screen.
+     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
      */
     public function getHoldLink($id, $details)
     {
diff --git a/module/VuFind/src/VuFind/ILS/Driver/Demo.php b/module/VuFind/src/VuFind/ILS/Driver/Demo.php
index f555ffc2726..61181aa59fb 100644
--- a/module/VuFind/src/VuFind/ILS/Driver/Demo.php
+++ b/module/VuFind/src/VuFind/ILS/Driver/Demo.php
@@ -1741,6 +1741,7 @@ class Demo extends AbstractBase
      *
      * @return array An array of data on the request including
      * whether or not it was successful and a system message (if available)
+     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
      */
     public function changePassword($details)
     {
diff --git a/module/VuFind/src/VuFind/ILS/Driver/VoyagerRestful.php b/module/VuFind/src/VuFind/ILS/Driver/VoyagerRestful.php
index 924aac604fe..9b2076799e6 100644
--- a/module/VuFind/src/VuFind/ILS/Driver/VoyagerRestful.php
+++ b/module/VuFind/src/VuFind/ILS/Driver/VoyagerRestful.php
@@ -3227,6 +3227,7 @@ EOT;
      *
      * @return bool True if the method can be called with the given parameters,
      * false otherwise.
+     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
      */
     public function supportsMethod($method, $params)
     {
-- 
GitLab