]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/output/class_ConsoleOutput.php
Fixed
[core.git] / inc / classes / main / output / class_ConsoleOutput.php
index 0e78c8a22b68acd359a51fa6b87c7b6f723ec063..a8b8155e76eb7c2919b3513b6ebaeb49f0ef64cf 100644 (file)
@@ -5,7 +5,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007 - 2009 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -58,11 +58,12 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer {
                self::$consoleInstance = new ConsoleOutput();
 
                // Set the content type
+               // @TODO Need to rewrite this to $requestInstance->addHeader()
                if (!empty($contentType)) {
                        @header(sprintf("Content-type: %s",
                                $contentType
                        ));
-               }
+               } // END - if
 
                // Return instance
                return self::$consoleInstance;
@@ -87,11 +88,11 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer {
         * @param       $outStream      Something we shall sent to the console
         * @return      void
         */
-       public final function output ($outStream=false) {
+       public final function output ($outStream = false) {
                if ($outStream === false) {
                        // Output something here...
                        foreach ($this->vars as $var => $value) {
-                               $this->output("var=".$var.", value=".$value."");
+                               $this->output("var=".$var.", value=".$value.'');
                        }
                } else {
                        // Output it to the console