From: Roland Häder Date: Wed, 6 Apr 2011 01:08:03 +0000 (+0000) Subject: Some code cosmetics applied X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=e677efdb845a9b2d6763e271a505ab8b4c6c3c46;hp=da72486fc732390340d9e05e18a82ff02fe0c8c7 Some code cosmetics applied --- diff --git a/index.php b/index.php index 782525e1a5..3950334e91 100644 --- a/index.php +++ b/index.php @@ -56,7 +56,7 @@ final class ApplicationEntryPoint { * @param $extraData Extra information from exceptions * @param $silentMode Wether not silent mode is turned on * @return void - * @todo This method is old code and needs heavy rewrite + * @todo This method is old code and needs heavy rewrite and should be moved to ApplicationHelper */ public static final function app_die ($message = '', $code = false, $extraData = '', $silentMode = false) { // Is this method already called? @@ -109,9 +109,18 @@ final class ApplicationEntryPoint { $backtraceArray = debug_backtrace(); $backtrace = ''; foreach ($backtraceArray as $key => $trace) { - if (!isset($trace['file'])) $trace['file'] = __FILE__; - if (!isset($trace['line'])) $trace['line'] = __LINE__; - if (!isset($trace['args'])) $trace['args'] = array(); + // Set missing array elements + if (!isset($trace['file'])) { + $trace['file'] = __FILE__; + } // END - if + if (!isset($trace['line'])) { + $trace['line'] = __LINE__; + } // END - if + if (!isset($trace['args'])) { + $trace['args'] = array(); + } // END - if + + // Add the traceback path to the final output $backtrace .= sprintf("%s:%d, %s(%d)
\n", basename($trace['file']), $trace['line'],