]> git.mxchange.org Git - core.git/blobdiff - inc/main/classes/application/class_BaseApplication.php
Continued:
[core.git] / inc / main / classes / application / class_BaseApplication.php
index 7f14fe24983356fe6be6927bb0420a844668b961..e638a23a80fa0a62c230c623e41cbc047e904c0e 100644 (file)
@@ -1,10 +1,17 @@
 <?php
+// Own namespace
+namespace CoreFramework\Application;
+
+// Import framework stuff
+use CoreFramework\Object\BaseFrameworkSystem;
+use CoreFramework\Registry\Registry;
+
 /**
  * A general application class for the ApplicationHelper classes.
  *
  * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.shipsimu.org
  *
@@ -38,7 +45,5 @@ class BaseApplication extends BaseFrameworkSystem {
                // Add this instance
                $registryInstance->addInstance('application', $this);
        }
-}
 
-// [EOF]
-?>
+}