X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=index.php;fp=index.php;h=9bd38f95bc50b3a8350e8d8d1f7dc0a4e44bfdef;hp=34e000d470d68b73258a697639e3545fb9deb7c3;hb=bbf8d1ba0d35bac874225f0f9ef2102b4dbb1c78;hpb=0d7e7d15f259555803443b95a943cd821e597b28 diff --git a/index.php b/index.php index 34e000d4..9bd38f95 100644 --- 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();