From af1f6caba0973bc792544196ca96c8133499cce6 Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Fri, 4 Jan 2013 09:32:25 -0500
Subject: [PATCH] Simplified use statement.

---
 module/VuFind/src/VuFind/Bootstrap.php | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/module/VuFind/src/VuFind/Bootstrap.php b/module/VuFind/src/VuFind/Bootstrap.php
index 0ad0afa7778..4f25b35ee42 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);
-- 
GitLab