diff --git a/module/VuFind/Module.php b/module/VuFind/Module.php index 78f16baa5c4e4c1cfc04c4f01196b1e503711e06..c068ec6ae43e057d8b5fcabd25b2f77a6c7d1bb5 100644 --- a/module/VuFind/Module.php +++ b/module/VuFind/Module.php @@ -26,8 +26,7 @@ * @link https://github.com/dmj/vf2-proxy */ namespace VuFind; -use VuFind\Bootstrap, - Zend\ModuleManager\ModuleManager, +use Zend\ModuleManager\ModuleManager, Zend\Mvc\MvcEvent; /** @@ -92,7 +91,7 @@ class Module */ public function onBootstrap(MvcEvent $e) { - $bootstrapper = new Bootstrap($e); + $bootstrapper = new Bootstrapper($e); $bootstrapper->bootstrap(); } } diff --git a/module/VuFind/src/VuFind/Bootstrap.php b/module/VuFind/src/VuFind/Bootstrapper.php similarity index 99% rename from module/VuFind/src/VuFind/Bootstrap.php rename to module/VuFind/src/VuFind/Bootstrapper.php index d105e92959510a716505171efd4a27abd24bcc6e..918d717855e3882763e4eb37425833a553170d2e 100644 --- a/module/VuFind/src/VuFind/Bootstrap.php +++ b/module/VuFind/src/VuFind/Bootstrapper.php @@ -38,7 +38,7 @@ use VuFind\Config\Reader as ConfigReader, * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @link http://vufind.org Main Site */ -class Bootstrap +class Bootstrapper { protected $config; protected $event;