diff --git a/module/VuDL/src/VuDL/Factory.php b/module/VuDL/src/VuDL/Factory.php index bed537351102c3fcb3f3d5d2c5773cd746e598a6..8f534e6d863bc77bc50c0bfbf984bef4c33a4a88 100644 --- a/module/VuDL/src/VuDL/Factory.php +++ b/module/VuDL/src/VuDL/Factory.php @@ -49,8 +49,8 @@ class Factory public static function getConnectionManager(ServiceManager $sm) { return new \VuDL\Connection\Manager( - array('Solr', 'Fedora'), $sm - ); + array('Solr', 'Fedora'), $sm + ); } /** @@ -62,9 +62,9 @@ class Factory */ public static function getConnectionFedora(ServiceManager $sm) { - return new \VuDL\Connection\Fedora( - $sm->get('VuFind\Config')->get('VuDL') - ); + return new \VuDL\Connection\Fedora( + $sm->get('VuFind\Config')->get('VuDL') + ); } /** @@ -76,10 +76,10 @@ class Factory */ public static function getConnectionSolr(ServiceManager $sm) { - return new \VuDL\Connection\Solr( - $sm->get('VuFind\Config')->get('VuDL'), - $sm->get('VuFind\Search\BackendManager')->get('Solr') - ); + return new \VuDL\Connection\Solr( + $sm->get('VuFind\Config')->get('VuDL'), + $sm->get('VuFind\Search\BackendManager')->get('Solr') + ); } /**