From 211f10ac9751f1dc03827790557645baf47c088f Mon Sep 17 00:00:00 2001
From: =?utf8?q?Roland=20H=C3=A4der?= <roland@mxchange.org>
Date: Fri, 25 Mar 2011 10:38:46 +0000
Subject: [PATCH] If the class is final, no methods can be overwritten and
 therefore all methods are also final

---
 index.php | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/index.php b/index.php
index 2c960e2..782525e 100644
--- a/index.php
+++ b/index.php
@@ -9,7 +9,7 @@
  *
  * @author		Roland Haeder <webmaster@ship-simu.org>
  * @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
@@ -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
@@ -178,7 +178,7 @@ final class ApplicationEntryPoint {
 	 *
 	 * @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');
 
-- 
2.39.5