From 26b8c5d75a5fd96b27f2e889b55af611f1968d0e Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Mon, 22 Oct 2012 14:01:23 -0400 Subject: [PATCH] Renamed worldcatconnection service to VuFind\WorldCatConnection. --- module/VuFind/config/module.config.php | 2 +- module/VuFind/src/VuFind/RecordDriver/WorldCat.php | 2 +- module/VuFind/src/VuFind/Search/WorldCat/Results.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/module/VuFind/config/module.config.php b/module/VuFind/config/module.config.php index 2ac92b4d97b..55d55886d3f 100644 --- a/module/VuFind/config/module.config.php +++ b/module/VuFind/config/module.config.php @@ -322,7 +322,7 @@ $config = array( 'VuFind\SearchSpecsReader' => 'VuFind\Config\SearchSpecsReader', 'VuFind\SessionManager' => 'Zend\Session\SessionManager', 'VuFind\SMS' => 'VuFind\Mailer\SMS', - 'worldcatconnection' => 'VuFind\Connection\WorldCat', + 'VuFind\WorldCatConnection' => 'VuFind\Connection\WorldCat', 'worldcatutils' => 'VuFind\Connection\WorldCatUtils', ), 'initializers' => array( diff --git a/module/VuFind/src/VuFind/RecordDriver/WorldCat.php b/module/VuFind/src/VuFind/RecordDriver/WorldCat.php index 2fc867e947f..f4ffe1ce46b 100644 --- a/module/VuFind/src/VuFind/RecordDriver/WorldCat.php +++ b/module/VuFind/src/VuFind/RecordDriver/WorldCat.php @@ -312,7 +312,7 @@ class WorldCat extends SolrMarc public function getWorldCatHoldings() { $wc = $this->getServiceLocator()->getServiceLocator() - ->get('WorldCatConnection'); + ->get('VuFind\WorldCatConnection'); return $wc->getHoldings($this->getUniqueId()); } } diff --git a/module/VuFind/src/VuFind/Search/WorldCat/Results.php b/module/VuFind/src/VuFind/Search/WorldCat/Results.php index 345aea6b8d1..1de96d6a943 100644 --- a/module/VuFind/src/VuFind/Search/WorldCat/Results.php +++ b/module/VuFind/src/VuFind/Search/WorldCat/Results.php @@ -53,7 +53,7 @@ class Results extends BaseResults */ public function getWorldCatConnection() { - return $this->getServiceLocator()->get('WorldCatConnection'); + return $this->getServiceLocator()->get('VuFind\WorldCatConnection'); } /** -- GitLab