Request class rewritten to extend BaseRequest class, ConsoleRequest added
[core.git] / inc / classes / main / debug / class_DebugConsoleOutput.php
index 4dd9c82666ee717a6a4735ecd9e605f122063937..c397022d62c7718fa153284ea292ae724255bb51 100644 (file)
@@ -35,7 +35,7 @@ class DebugConsoleOutput extends BaseFrameworkSystem implements Debugger, Output
        /**
         * Creates an instance of this class
         *
-        * @return      $debugInstance          The prepared debug instance
+        * @return      $debugInstance  The prepared debug instance
         */
        public final static function createDebugConsoleOutput () {
                // Get a new instance
@@ -48,7 +48,7 @@ class DebugConsoleOutput extends BaseFrameworkSystem implements Debugger, Output
        /**
         * Outputs the given data without HTML tags
         *
-        * @param               $output The HTML'ed output
+        * @param       $output         The HTML'ed output
         * @return      void
         */
        public final function outputStream ($output) {
@@ -58,8 +58,8 @@ class DebugConsoleOutput extends BaseFrameworkSystem implements Debugger, Output
        /**
         * Assigns a variable for output
         *
-        * @param               $var            The variable we shall assign
-        * @param               $value  The value to store in the variable
+        * @param       $var    The variable we shall assign
+        * @param       $value  The value to store in the variable
         * @return      void
         */
        public final function assignVariable ($var, $value) {
@@ -76,7 +76,7 @@ class DebugConsoleOutput extends BaseFrameworkSystem implements Debugger, Output
                // Empty output will be silently ignored
                if ($outStream !== false) {
                        $this->outputStream($outStream);
-               }
+               } // END - if
        }
 }