From 2c72687a3e1b541c917cf0726756e066af4887ec Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Thu, 23 Apr 2015 09:59:26 -0400
Subject: [PATCH] Fixes strict standards error on function preDispatch

---
 module/VuFind/src/VuFind/Controller/SummonController.php | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/module/VuFind/src/VuFind/Controller/SummonController.php b/module/VuFind/src/VuFind/Controller/SummonController.php
index eaff57a2071..0ee5bb7cd70 100644
--- a/module/VuFind/src/VuFind/Controller/SummonController.php
+++ b/module/VuFind/src/VuFind/Controller/SummonController.php
@@ -63,9 +63,13 @@ class SummonController extends AbstractSearch
     /**
      * Use preDispatch event to add Summon message.
      *
+     * @param MvcEvent $e Event object
+     *
      * @return void
+     *
+     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
      */
-    public function preDispatch()
+    public function preDispatch(MvcEvent $e)
     {
         $this->layout()->poweredBy
             = 'Powered by Summonâ„¢ from Serials Solutions, a division of ProQuest.';
-- 
GitLab