X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fexceptions%2Fclass_FrameworkException.php;h=4c1c73a979feaf12101865619cd9ee5da1b07653;hp=c3a2c1a38ff395788fb3eb187d1038ba6b0e217c;hb=3107989f93cfb5808ce9d75f1c7d2b7ee3d83d18;hpb=c6d73b0e3246efc824cb98338d4be7ee5bc9f308 diff --git a/inc/classes/exceptions/class_FrameworkException.php b/inc/classes/exceptions/class_FrameworkException.php index c3a2c1a3..4c1c73a9 100644 --- a/inc/classes/exceptions/class_FrameworkException.php +++ b/inc/classes/exceptions/class_FrameworkException.php @@ -6,7 +6,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, this is free software + * @copyright Copyright (c) 2007 - 2009 Roland Haeder, this is free software * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -32,7 +32,7 @@ abstract class FrameworkException extends ReflectionException { /** * Extra data */ - private $extraData = ""; + private $extraData = ''; /** * The super constructor for all exceptions @@ -41,7 +41,7 @@ abstract class FrameworkException extends ReflectionException { * @param $code An optional code for better debugging * @return void */ - public function __construct($message, $code = 0) { + public function __construct ($message, $code = 0) { // Extract backtrace $this->saveBackTrace(); @@ -118,7 +118,7 @@ abstract class FrameworkException extends ReflectionException { // Are there arguments? if ((isset($dbgInfo['args'])) && (is_array($dbgInfo['args'])) && (isset($dbgInfo['args'][0]))) { //* DEBUG: */ echo $dbgIndex.":
".htmlentities(print_r($dbgInfo['args'], true))."
"; - $info = ""; + $info = ''; foreach ($dbgInfo['args'] as $debug) { // Add only non-array elements if (!is_array($debug)) {