]> git.mxchange.org Git - core.git/blobdiff - framework/bootstrap/bootstrap.inc.php
Continued:
[core.git] / framework / bootstrap / bootstrap.inc.php
index 4c2ebd4286644e5ddc0c7419c8cf95ddb2803ddd..b451b5eea294ae0aca1fa8e15b9d55c82fb91202 100644 (file)
@@ -1,13 +1,13 @@
 <?php
 // Import framework stuff
-use CoreFramework\Bootstrap\BootstrapFramework;
+use Org\Mxchange\CoreFramework\Bootstrap\FrameworkBootstrap;
 
 /**
  * Start including this file to bootstrap into the framework
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2016 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2023 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -26,7 +26,7 @@ use CoreFramework\Bootstrap\BootstrapFramework;
  */
 
 // Load very basic classes, required to bootstrap
-require(__DIR__ . '/class_BootstrapFramework.php');
+require sprintf('%s%sclass_FrameworkBootstrap.php', __DIR__, DIRECTORY_SEPARATOR);
 
 // Bootstrap framework
-BootstrapFramework::doBootstrap();
+FrameworkBootstrap::doBootstrap();