X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=index.php;fp=index.php;h=3950334e917c67e0b9c65eaa558bae402cfd9677;hp=782525e1a5e8805293db8aeb877edb6190fabc5c;hb=09ef4cde10fc37544a286d1ec31dcb493eaf1396;hpb=c9368f418a157f213c27894d77b25fb7090aa9f8 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'],