diff --git a/module/VuFind/src/VuFind/Bootstrap.php b/module/VuFind/src/VuFind/Bootstrap.php index 0ad0afa777861426590013226db9aff457d3031e..4f25b35ee4284339fa697f7f2778403b868447a1 100644 --- a/module/VuFind/src/VuFind/Bootstrap.php +++ b/module/VuFind/src/VuFind/Bootstrap.php @@ -28,9 +28,7 @@ namespace VuFind; use VuFind\Config\Reader as ConfigReader, VuFind\Theme\Initializer as ThemeInitializer, Zend\Console\Console, - Zend\Mvc\MvcEvent, Zend\Mvc\Router\Http\RouteMatch, - Zend\ServiceManager\Config as ServiceManagerConfig, - Zend\ServiceManager\ServiceLocatorAwareInterface; + Zend\Mvc\MvcEvent, Zend\Mvc\Router\Http\RouteMatch; /** * VuFind Bootstrapper @@ -100,7 +98,7 @@ class Bootstrap $configKey = strtolower(str_replace('\\', '_', $ns)) . '_plugin_manager'; return new $className( - new ServiceManagerConfig($config[$configKey]) + new \Zend\ServiceManager\Config($config[$configKey]) ); }; $serviceManager->setFactory($serviceName, $factory);