X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=application%2Ftests%2Fstarter.php;h=377f446241dec0bae7abc0d9214f986ccabc7763;hb=7da942b8177f7272700fd0bb7b0743bee9b58e4c;hp=228e4f8c728216ba893fb83d07aa57b3f8c60247;hpb=d26e71af1e28dc1429823bdec244df6303f9b2fb;p=core.git diff --git a/application/tests/starter.php b/application/tests/starter.php index 228e4f8c..377f4462 100644 --- a/application/tests/starter.php +++ b/application/tests/starter.php @@ -1,10 +1,13 @@ * @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 * @@ -26,7 +29,7 @@ // maining the application $app = call_user_func_array( array( - FrameworkConfiguration::getSelfInstance()->getConfigEntry('app_helper_class'), 'getSelfInstance' + 'CoreFramework\Helper\Application\ApplicationHelper', 'getSelfInstance' ), array() ); @@ -35,7 +38,7 @@ if ((empty($app)) || (is_null($app))) { // Something went wrong! ApplicationEntryPoint::app_exit(sprintf("[Main:] The application %s could not be launched because the helper class %s is not loaded.", $application, - FrameworkConfiguration::getSelfInstance()->getConfigEntry('app_helper_class') + 'CoreFramework\Helper\Application\ApplicationHelper' )); } elseif (!is_object($app)) { // No object! @@ -52,6 +55,3 @@ if ((empty($app)) || (is_null($app))) { // Call user function call_user_func_array(array($app, FrameworkConfiguration::getSelfInstance()->getConfigEntry('entry_method')), array()); - -// [EOF] -?>