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

Renamed worldcatconnection service to VuFind\WorldCatConnection.

parent c54746be
No related merge requests found
...@@ -322,7 +322,7 @@ $config = array( ...@@ -322,7 +322,7 @@ $config = array(
'VuFind\SearchSpecsReader' => 'VuFind\Config\SearchSpecsReader', 'VuFind\SearchSpecsReader' => 'VuFind\Config\SearchSpecsReader',
'VuFind\SessionManager' => 'Zend\Session\SessionManager', 'VuFind\SessionManager' => 'Zend\Session\SessionManager',
'VuFind\SMS' => 'VuFind\Mailer\SMS', 'VuFind\SMS' => 'VuFind\Mailer\SMS',
'worldcatconnection' => 'VuFind\Connection\WorldCat', 'VuFind\WorldCatConnection' => 'VuFind\Connection\WorldCat',
'worldcatutils' => 'VuFind\Connection\WorldCatUtils', 'worldcatutils' => 'VuFind\Connection\WorldCatUtils',
), ),
'initializers' => array( 'initializers' => array(
......
...@@ -312,7 +312,7 @@ class WorldCat extends SolrMarc ...@@ -312,7 +312,7 @@ class WorldCat extends SolrMarc
public function getWorldCatHoldings() public function getWorldCatHoldings()
{ {
$wc = $this->getServiceLocator()->getServiceLocator() $wc = $this->getServiceLocator()->getServiceLocator()
->get('WorldCatConnection'); ->get('VuFind\WorldCatConnection');
return $wc->getHoldings($this->getUniqueId()); return $wc->getHoldings($this->getUniqueId());
} }
} }
...@@ -53,7 +53,7 @@ class Results extends BaseResults ...@@ -53,7 +53,7 @@ class Results extends BaseResults
*/ */
public function getWorldCatConnection() public function getWorldCatConnection()
{ {
return $this->getServiceLocator()->get('WorldCatConnection'); return $this->getServiceLocator()->get('VuFind\WorldCatConnection');
} }
/** /**
......
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