]> git.mxchange.org Git - core.git/blobdiff - inc/classes/exceptions/class_FrameworkException.php
Copyright updated
[core.git] / inc / classes / exceptions / class_FrameworkException.php
index 50c86ada684b3306e080021bcbc09fd333ab6b3f..28249ecb5c886b9483c1ca4ea5a15062440ddfe7 100644 (file)
@@ -6,7 +6,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -114,7 +114,7 @@ abstract class FrameworkException extends ReflectionException {
                $dbgMsg = "<br />\nDebug backtrace begin:<br />\n";
                foreach ($dbgTrace as $dbgIndex => $dbgInfo) {
                        // No info by default
-                       $info = "NULL";
+                       $info = 'NULL';
 
                        // Are there arguments?
                        if ((isset($dbgInfo['args'])) && (is_array($dbgInfo['args'])) && (isset($dbgInfo['args'][0]))) {
@@ -132,18 +132,18 @@ abstract class FrameworkException extends ReflectionException {
                        } // END - if
 
                        // Prepare argument infos
-                       $info = "<em id=\"debug_args_".$dbgIndex."\">{$info}</em>";
+                       $info = '<em id="debug_args_' . $dbgIndex . '">' . $info . '</em>';
 
                        // File detection
-                       $file = "Unknown file";
+                       $file = 'Unknown file';
                        if (isset($dbgInfo['file'])) {
                                $file = basename($dbgInfo['file']);
                        } // END - if
 
                        // Line detection
-                       $line = "Unknown line";
+                       $line = 'Unknown line';
                        if (isset($dbgInfo['line'])) {
-                               $line = "line {$dbgInfo['line']}";
+                               $line = 'line ' . $dbgInfo['line'];
                        } // END - if
 
                        // The message
@@ -172,7 +172,7 @@ abstract class FrameworkException extends ReflectionException {
         * @param       $code           Integer code to encode in hex
         * @return      $hexCode        The exception code in hex-decimal format
         */
-       public final function getHexCode ($code = null) {
+       public final function getHexCode ($code = NULL) {
                // Get the decimal code
                if (is_null($code)) $code = $this->getCode();