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

Minor signature/comment cleanup.

parent a54e62bc
No related merge requests found
...@@ -85,13 +85,13 @@ class OpenUrl extends \Zend\View\Helper\AbstractHelper ...@@ -85,13 +85,13 @@ class OpenUrl extends \Zend\View\Helper\AbstractHelper
/** /**
* Constructor * Constructor
* *
* @param \VuFind\View\Helper\Root\Context $context Context helper * @param Context $context Context helper
* @param array $openUrlRules VuFind OpenURL rules * @param array $openUrlRules VuFind OpenURL rules
* @param PluginManager $pluginManager Resolver plugin manager * @param PluginManager $pluginManager Resolver plugin manager
* @param \Zend\Config\Config $config VuFind OpenURL config * @param \Zend\Config\Config $config VuFind OpenURL config
*/ */
public function __construct(\VuFind\View\Helper\Root\Context $context, public function __construct(Context $context, $openUrlRules,
$openUrlRules, PluginManager $pluginManager, $config = null PluginManager $pluginManager, $config = null
) { ) {
$this->context = $context; $this->context = $context;
$this->openUrlRules = $openUrlRules; $this->openUrlRules = $openUrlRules;
...@@ -100,9 +100,9 @@ class OpenUrl extends \Zend\View\Helper\AbstractHelper ...@@ -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' * @param string $area OpenURL context ('results', 'record'
* or 'holdings' * or 'holdings'
* *
......
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