X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=application%2Fship-simu%2Fstarter.php;fp=application%2Fship-simu%2Fstarter.php;h=468848daf090a9974de6093dff13361fdff2f068;hb=11c0ba60cb6c044928f41e93cc98d214b1d8ad7c;hp=7086fda8b04afea297703b3b0ba3fd49fd396681;hpb=b226bbefe6bc09bcd75432c3c3ba32bf7da45b71;p=shipsimu.git diff --git a/application/ship-simu/starter.php b/application/ship-simu/starter.php index 7086fda..468848d 100644 --- a/application/ship-simu/starter.php +++ b/application/ship-simu/starter.php @@ -31,26 +31,26 @@ 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.", $application, - FrameworkConfiguration::getInstance()->readConfig("app_helper_class") + 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.", $application )); -} elseif (!method_exists($app, FrameworkConfiguration::getInstance()->readConfig("entry_method"))) { +} 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.", $application, - FrameworkConfiguration::getInstance()->readConfig("entry_method") + FrameworkConfiguration::getInstance()->readConfig('entry_method') )); } // Call the entry point method try { $eval = sprintf("%s::getInstance()->%s();", - FrameworkConfiguration::getInstance()->readConfig("app_helper_class"), - FrameworkConfiguration::getInstance()->readConfig("entry_method") + FrameworkConfiguration::getInstance()->readConfig('app_helper_class'), + FrameworkConfiguration::getInstance()->readConfig('entry_method') ); eval($eval); } catch (FrameworkException $e) {