]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/main/debug/class_DebugErrorLogOutput.php
core code merged, interfaces OutputStreamer implemented
[shipsimu.git] / inc / classes / main / debug / class_DebugErrorLogOutput.php
index 8916b057e7359ec50e41faafdc8debe95b4aea02..c8e62936e528147977d4082e2f75d020a10fbcbe 100644 (file)
@@ -2,10 +2,11 @@
 /**
  * A debug output class for PHP's error_log() command
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
- * @version            0.0
+ * @author             Roland Haeder <webmaster@mxchange.org>
+ * @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]
 ?>