Continued:
[core.git] / inc / loader / class_ClassLoader.php
index d0e264fc586f34381e948462b494f1926f57083d..8ce7f4fe7732bbae6608045a4ce689c6b0d6a98d 100644 (file)
@@ -1,4 +1,15 @@
 <?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
  *
@@ -476,7 +487,5 @@ class ClassLoader {
                // And return it
                return $includeList;
        }
-}
 
-// [EOF]
-?>
+}