X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=index.php;h=782525e1a5e8805293db8aeb877edb6190fabc5c;hb=e60850a571cacf3332f1711a19db41e660c76559;hp=3b7f082544b72dcaebefe3db00e4752fdb4aa922;hpb=158e03e23595789d6e434adc6f25374b32cb5ea0;p=mailer.git diff --git a/index.php b/index.php index 3b7f082544..782525e1a5 100644 --- a/index.php +++ b/index.php @@ -9,7 +9,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009, 2010 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -58,7 +58,7 @@ final class ApplicationEntryPoint { * @return void * @todo This method is old code and needs heavy rewrite */ - public static function app_die ($message = '', $code = false, $extraData = '', $silentMode = false) { + public static final function app_die ($message = '', $code = false, $extraData = '', $silentMode = false) { // Is this method already called? if (isset($GLOBALS['app_die_called'])) { // Then output the text directly @@ -98,7 +98,7 @@ final class ApplicationEntryPoint { // Use the template engine for putting out (nicer look) the message try { // Get the template instance from our object factory - $templateInstance = ObjectFactory::createObjectByName($tpl, array(ApplicationHelper::getInstance())); + $templateInstance = ObjectFactory::createObjectByName($tpl); } catch (FrameworkException $e) { die(sprintf("[Main:] Could not initialize template engine for reason: %s", $e->getMessage() @@ -121,15 +121,15 @@ final class ApplicationEntryPoint { } // END - foreach // Init application instance - $appInstance = null; + $applicationInstance = null; // Is the class there? if (class_exists('ApplicationHelper')) { // Get application instance - $appInstance = ApplicationHelper::getInstance(); + $applicationInstance = ApplicationHelper::getInstance(); // Assign application data - $templateInstance->assignApplicationData($appInstance); + $templateInstance->assignApplicationData($applicationInstance); } // END - if // We only try this @@ -176,9 +176,9 @@ final class ApplicationEntryPoint { * Determines the correct absolute path for all includes only once per run. * Other calls of this method are being "cached". * - * @return $basePath Base path (core) for all includes + * @return $corePath Base path (core) for all includes */ - protected static function detectCorePath () { + protected static final function detectCorePath () { // Is it not set? if (empty(self::$corePath)) { // Auto-detect our core path @@ -197,7 +197,7 @@ final class ApplicationEntryPoint { * * @return void */ - public static function main () { + public static final function main () { // Load config file require(self::detectCorePath() . '/inc/config.php');