From: Roland Häder Date: Wed, 6 Apr 2011 01:08:18 +0000 (+0000) Subject: Some code cosmetics applied X-Git-Url: https://git.mxchange.org/?p=qa.git;a=commitdiff_plain;h=bed917340fcd7f90a18256265b176220047e5cd6 Some code cosmetics applied --- diff --git a/index.php b/index.php index 782525e..3950334 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'],