* @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
*
* @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
*
* @return void
*/
- public static function main () {
+ public static final function main () {
// Load config file
require(self::detectCorePath() . '/inc/config.php');