Continued:
[core.git] / index.php
index 34e000d470d68b73258a697639e3545fb9deb7c3..9bd38f95bc50b3a8350e8d8d1f7dc0a4e44bfdef 100644 (file)
--- a/index.php
+++ b/index.php
@@ -4,6 +4,8 @@ namespace CoreFramework\EntryPoint;
 
 // Import framework stuff
 use CoreFramework\Configuration\FrameworkConfiguration;
+use CoreFramework\Helper\Application\ApplicationHelper;
+use CoreFramework\Loader\ClassLoader;
 
 /**
  * The main class with the entry point to the whole application. This class
@@ -123,7 +125,7 @@ final class ApplicationEntryPoint {
                        $applicationInstance = NULL;
 
                        // Is the class there?
-                       if (class_exists('ApplicationHelper')) {
+                       if (class_exists('CoreFramework\Helper\Application\ApplicationHelper')) {
                                // Get application instance
                                $applicationInstance = ApplicationHelper::getSelfInstance();