Skip to content
Snippets Groups Projects
Commit 3447c15c authored by André Lahmann's avatar André Lahmann
Browse files

refs #4499:

* fixed driver call method name
parent 59b07e29
No related merge requests found
...@@ -6,7 +6,7 @@ $config = array( ...@@ -6,7 +6,7 @@ $config = array(
'plugin_managers' => array( 'plugin_managers' => array(
'ils_driver' => array( 'ils_driver' => array(
'factories' => array( 'factories' => array(
'fincdaia' => 'finc\ILS\Driver\Factory::getDAIA', 'fincdaia' => 'finc\ILS\Driver\Factory::getFincDAIA',
), ),
'invokables' => array( 'invokables' => array(
'daia' => 'finc\ILS\Driver\DAIA', 'daia' => 'finc\ILS\Driver\DAIA',
......
...@@ -47,7 +47,7 @@ class Factory extends \VuFind\ILS\Driver\Factory ...@@ -47,7 +47,7 @@ class Factory extends \VuFind\ILS\Driver\Factory
* *
* @return NoILS * @return NoILS
*/ */
public static function getDAIA(ServiceManager $sm) public static function getFincDAIA(ServiceManager $sm)
{ {
return new FincDAIA($sm->getServiceLocator()->get('VuFind\RecordLoader')); return new FincDAIA($sm->getServiceLocator()->get('VuFind\RecordLoader'));
} }
......
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