]> git.mxchange.org Git - hub.git/commitdiff
If the class is final, no methods can be overwritten and therefore all methods are...
authorRoland Häder <roland@mxchange.org>
Fri, 25 Mar 2011 10:38:30 +0000 (10:38 +0000)
committerRoland Häder <roland@mxchange.org>
Fri, 25 Mar 2011 10:38:30 +0000 (10:38 +0000)
index.php

index 050f99828af55bc8ab08e546b97c8f216533b830..782525e1a5e8805293db8aeb877edb6190fabc5c 100644 (file)
--- a/index.php
+++ b/index.php
@@ -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
@@ -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');