]> git.mxchange.org Git - core.git/blobdiff - inc/loader/class_ClassLoader.php
Continued:
[core.git] / inc / loader / class_ClassLoader.php
index 7b6bb2dd1a32b6d38607249a97cab86861a6d955..8ce7f4fe7732bbae6608045a4ce689c6b0d6a98d 100644 (file)
@@ -1,10 +1,21 @@
 <?php
+// Own namespace
+namespace CoreFramework\Loader;
+
+// Import framework stuff
+use CoreFramework\Configuration\FrameworkConfiguration;
+use CoreFramework\Object\BaseFrameworkSystem;
+
+// Import SPL stuff
+use \RecursiveDirectoryIterator;
+use \RecursiveIteratorIterator;
+
 /**
  * This class loads class include files with a specific prefix and suffix
  *
  * @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
  *
@@ -476,7 +487,5 @@ class ClassLoader {
                // And return it
                return $includeList;
        }
-}
 
-// [EOF]
-?>
+}