Skip to content
Snippets Groups Projects
Commit 63ea83e9 authored by Demian Katz's avatar Demian Katz
Browse files

Improved class name (to avoid ambiguous function name that could be misconstrued as constructor).

parent 387e599c
No related merge requests found
...@@ -26,8 +26,7 @@ ...@@ -26,8 +26,7 @@
* @link https://github.com/dmj/vf2-proxy * @link https://github.com/dmj/vf2-proxy
*/ */
namespace VuFind; namespace VuFind;
use VuFind\Bootstrap, use Zend\ModuleManager\ModuleManager,
Zend\ModuleManager\ModuleManager,
Zend\Mvc\MvcEvent; Zend\Mvc\MvcEvent;
/** /**
...@@ -92,7 +91,7 @@ class Module ...@@ -92,7 +91,7 @@ class Module
*/ */
public function onBootstrap(MvcEvent $e) public function onBootstrap(MvcEvent $e)
{ {
$bootstrapper = new Bootstrap($e); $bootstrapper = new Bootstrapper($e);
$bootstrapper->bootstrap(); $bootstrapper->bootstrap();
} }
} }
...@@ -38,7 +38,7 @@ use VuFind\Config\Reader as ConfigReader, ...@@ -38,7 +38,7 @@ use VuFind\Config\Reader as ConfigReader,
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://vufind.org Main Site * @link http://vufind.org Main Site
*/ */
class Bootstrap class Bootstrapper
{ {
protected $config; protected $config;
protected $event; protected $event;
......
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