X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fdebug%2Fclass_DebugErrorLogOutput.php;h=c8e62936e528147977d4082e2f75d020a10fbcbe;hp=8916b057e7359ec50e41faafdc8debe95b4aea02;hb=6a235495afbc92d4116f94be590d40feb1ad7905;hpb=bfe9a4a335b6dce42742baeef1a03e0c45eeb5b8;ds=sidebyside diff --git a/inc/classes/main/debug/class_DebugErrorLogOutput.php b/inc/classes/main/debug/class_DebugErrorLogOutput.php index 8916b05..c8e6293 100644 --- a/inc/classes/main/debug/class_DebugErrorLogOutput.php +++ b/inc/classes/main/debug/class_DebugErrorLogOutput.php @@ -2,10 +2,11 @@ /** * A debug output class for PHP's error_log() command * - * @author Roland Haeder - * @version 0.0 + * @author Roland Haeder + * @version 0.3.0 * @copyright Copyright(c) 2007, 2008 Roland Haeder, this is free software * @license GNU GPL 3.0 or any newer version + * @link http://www.mxchange.org * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -77,6 +78,7 @@ class DebugErrorLogOutput extends BaseFrameworkSystem implements Debugger, Outpu * @return void */ public final function assignVariable ($var, $value) { + // Empty stub! trigger_error(__METHOD__.": Stub!"); } @@ -86,12 +88,12 @@ class DebugErrorLogOutput extends BaseFrameworkSystem implements Debugger, Outpu * @return void */ public final function output ($outStream=false) { - // false will be silently ignored + // Empty output will be silently ignored if ($outStream !== false) { $this->outputStream($outStream); } } } -// +// [EOF] ?>