From 6c3132d15e3decfbba07d1ead533026d2af3d4e6 Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Fri, 27 Jul 2018 09:23:55 -0400
Subject: [PATCH] Minor signature/comment cleanup.

---
 .../src/VuFind/View/Helper/Root/OpenUrl.php      | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/module/VuFind/src/VuFind/View/Helper/Root/OpenUrl.php b/module/VuFind/src/VuFind/View/Helper/Root/OpenUrl.php
index 1b3ff016cb2..26b32688a7e 100644
--- a/module/VuFind/src/VuFind/View/Helper/Root/OpenUrl.php
+++ b/module/VuFind/src/VuFind/View/Helper/Root/OpenUrl.php
@@ -85,13 +85,13 @@ class OpenUrl extends \Zend\View\Helper\AbstractHelper
     /**
      * Constructor
      *
-     * @param \VuFind\View\Helper\Root\Context $context       Context helper
-     * @param array                            $openUrlRules  VuFind OpenURL rules
-     * @param PluginManager                    $pluginManager Resolver plugin manager
-     * @param \Zend\Config\Config              $config        VuFind OpenURL config
+     * @param Context             $context       Context helper
+     * @param array               $openUrlRules  VuFind OpenURL rules
+     * @param PluginManager       $pluginManager Resolver plugin manager
+     * @param \Zend\Config\Config $config        VuFind OpenURL config
      */
-    public function __construct(\VuFind\View\Helper\Root\Context $context,
-        $openUrlRules, PluginManager $pluginManager, $config = null
+    public function __construct(Context $context, $openUrlRules,
+        PluginManager $pluginManager, $config = null
     ) {
         $this->context = $context;
         $this->openUrlRules = $openUrlRules;
@@ -100,9 +100,9 @@ class OpenUrl extends \Zend\View\Helper\AbstractHelper
     }
 
     /**
-     * Render appropriate UI controls for an OpenURL link.
+     * Set up context for helper
      *
-     * @param \VuFind\RecordDriver $driver The current recorddriver
+     * @param \VuFind\RecordDriver $driver The current record driver
      * @param string               $area   OpenURL context ('results', 'record'
      *  or 'holdings'
      *
-- 
GitLab