From: Roland Häder Date: Fri, 1 May 2009 20:10:01 +0000 (+0000) Subject: Generic index.php updated from hub project X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=2ed3bf8c24eed5403a08684bce715c9cafbcbecd Generic index.php updated from hub project --- diff --git a/index.php b/index.php index 3945af9620..005004646b 100644 --- a/index.php +++ b/index.php @@ -60,7 +60,7 @@ final class ApplicationEntryPoint { * @param $silentMode Wether not silent mode is turned on * @return void */ - public static function app_die ($message = "", $code = false, $extraData = "", $silentMode = false) { + public static function app_die ($message = '', $code = false, $extraData = '', $silentMode = false) { // Is this method already called? if (defined('EMERGENCY_EXIT_CALLED')) { // Then output the text directly @@ -73,14 +73,14 @@ final class ApplicationEntryPoint { // Is a message set? if (empty($message)) { // No message provided - $message = "No message provided!"; + $message = 'No message provided!'; } // END - if // Get config instance $configInstance = FrameworkConfiguration::getInstance(); // Do we have debug installation? - if (($configInstance->readConfig('product_install_mode') == "productive") || ($silentMode === true)) { + if (($configInstance->readConfig('product_install_mode') == 'productive') || ($silentMode === true)) { // Abort here die(); } // END - if @@ -106,7 +106,7 @@ final class ApplicationEntryPoint { // Get and prepare backtrace for output $backtraceArray = debug_backtrace(); - $backtrace = ""; + $backtrace = ''; foreach ($backtraceArray as $key => $trace) { if (!isset($trace['file'])) $trace['file'] = __FILE__; if (!isset($trace['line'])) $trace['line'] = __LINE__; @@ -161,7 +161,8 @@ final class ApplicationEntryPoint { } /** - * Determines the correct absolute path for all include + * 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 */