X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=application%2Ftodo%2Fstarter.php;h=b128839499518afe66965769f58138ac40ecb844;hb=878dfd7a9c423b4f194cee9c5500c2f0def31044;hp=b1530f7841b998c53abe0df9e4e2688166f17414;hpb=a12f51f9ed853bb79352fb9feffe4ac2c773ee17;p=shipsimu.git diff --git a/application/todo/starter.php b/application/todo/starter.php index b1530f7..b128839 100644 --- a/application/todo/starter.php +++ b/application/todo/starter.php @@ -29,18 +29,18 @@ $app = call_user_func_array(array(FrameworkConfiguration::getInstance()->readCon // Some sanity checks if ((empty($app)) || (is_null($app))) { // Something went wrong! - ApplicationEntryPoint::app_die(sprintf("[Main:] The application %s could not be launched because the helper class %s is not loaded.", + ApplicationEntryPoint::app_die(sprintf("[Main:] The application %s could not be launched because the helper class %s is not loaded.", $application, FrameworkConfiguration::getInstance()->readConfig('app_helper_class') )); } elseif (!is_object($app)) { // No object! - ApplicationEntryPoint::app_die(sprintf("[Main:] The application %s could not be launched because 'app' is not an object.", + ApplicationEntryPoint::app_die(sprintf("[Main:] The application %s could not be launched because 'app' is not an object.", $application )); } elseif (!method_exists($app, FrameworkConfiguration::getInstance()->readConfig('entry_method'))) { // Method not found! - ApplicationEntryPoint::app_die(sprintf("[Main:] The application %s could not be launched because the method %s is missing.", + ApplicationEntryPoint::app_die(sprintf("[Main:] The application %s could not be launched because the method %s is missing.", $application, FrameworkConfiguration::getInstance()->readConfig('entry_method') ));