]> git.mxchange.org Git - hub.git/commitdiff
core code merged, interfaces OutputStreamer implemented
authorRoland Häder <roland@mxchange.org>
Mon, 3 Mar 2008 21:21:59 +0000 (21:21 +0000)
committerRoland Häder <roland@mxchange.org>
Mon, 3 Mar 2008 21:21:59 +0000 (21:21 +0000)
inc/classes/main/debug/class_DebugConsoleOutput.php
inc/classes/main/debug/class_DebugErrorLogOutput.php
inc/classes/main/debug/class_DebugWebOutput.php
inc/database/lib-local.php
inc/includes.php
inc/output.php

index 8cc9cfb1d4fa5be66ff9c8d36de2db0f3b3b0bad..82bcd7f1fe8df8a9810456bc479847ae4af19f18 100644 (file)
@@ -68,7 +68,7 @@ class DebugConsoleOutput extends BaseFrameworkSystem implements Debugger, Output
         * @param               $value  The value to store in the variable
         * @return      void
         */
-       function assignVariable ($var, $value) {
+       public final function assignVariable ($var, $value) {
                // Empty stub!
                trigger_error(__METHOD__.": Stub!");
        }
@@ -78,7 +78,8 @@ class DebugConsoleOutput extends BaseFrameworkSystem implements Debugger, Output
         *
         * @return      void
         */
-       function output ($outStream=false) {
+       public final function output ($outStream=false) {
+               // Empty output will be silently ignored
                if ($outStream !== false) {
                        $this->outputStream($outStream);
                }
index 2afc3737bc22870ae70b336963a36752418b2b17..c8e62936e528147977d4082e2f75d020a10fbcbe 100644 (file)
@@ -77,7 +77,7 @@ class DebugErrorLogOutput extends BaseFrameworkSystem implements Debugger, Outpu
         * @param               $value  The value to store in the variable
         * @return      void
         */
-       function assignVariable ($var, $value) {
+       public final function assignVariable ($var, $value) {
                // Empty stub!
                trigger_error(__METHOD__.": Stub!");
        }
@@ -87,7 +87,8 @@ class DebugErrorLogOutput extends BaseFrameworkSystem implements Debugger, Outpu
         *
         * @return      void
         */
-       function output ($outStream=false) {
+       public final function output ($outStream=false) {
+               // Empty output will be silently ignored
                if ($outStream !== false) {
                        $this->outputStream($outStream);
                }
index d913ce6e295a26139f231aa75a46582e1fa5b084..ee3ae81b4c8fe373bd9ac46d490e16ef90f30e8a 100644 (file)
@@ -68,7 +68,7 @@ class DebugWebOutput extends BaseFrameworkSystem implements Debugger, OutputStre
         * @param               $value  The value to store in the variable
         * @return      void
         */
-       function assignVariable ($var, $value) {
+       public final function assignVariable ($var, $value) {
                // Empty stub!
                trigger_error(__METHOD__.": Stub!");
        }
@@ -78,7 +78,8 @@ class DebugWebOutput extends BaseFrameworkSystem implements Debugger, OutputStre
         *
         * @return      void
         */
-       function output ($outStream=false) {
+       public final function output ($outStream=false) {
+               // Empty output will be silently ignored
                if ($outStream !== false) {
                        $this->outputStream($outStream);
                }
index 90b1c0733f747be928c0697bd10ce1bbacf80485..a689fed4bc556e1c2bb7482568e7e0302231f681 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * Prepares a local file datbase
+ * Initializes the local file database class
  *
  * @author             Roland Haeder <webmaster@mxchange.org>
  * @version            0.3.0
index b2533f852a4dfac81af77baa9ac1e0199badafdd..5cecef88756d542602b14f07b043de476a8fd243 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * Load required include files
+ * Loads more include files by using the generic class loader
  *
  * @author             Roland Haeder <webmaster@mxchange.org>
  * @version            0.3.0
index 275f13927e4cee58e17c056ad7ba0da6ac3a5064..87e838432964783d606c1c30bd6a74504be80dc0 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * Prepares the (debug) output system
+ * Initializes the output middleware layer
  *
  * @author             Roland Haeder <webmaster@mxchange.org>
  * @version            0.3.0