]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/main/output/class_ConsoleOutput.php
generateUniqueId() and more useless/deprecated methods removed, code speed-up, link...
[shipsimu.git] / inc / classes / main / output / class_ConsoleOutput.php
index 7eeb854eeb926fdb3e2be7e6a72c511dba91d21e..b1cae5c408f77eee0c7816b72f768ed2720f54c0 100644 (file)
@@ -3,11 +3,11 @@
  * This class simply puts text without any HTML code out. This class is suiable
  * for console output
  *
- * @author             Roland Haeder <webmaster@mxchange.org>
+ * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright(c) 2007, 2008 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, this is free software
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.ship-simu.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
@@ -41,19 +41,13 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer {
        protected function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
-
-               // Set description
-               $this->setObjectDescription("Console output class");
-
-               // Create an unique ID
-               $this->createUniqueID();
        }
 
        /**
         * Create a new web output system and set the content type
         *
-        * @param               $contentType            A valid content-type
-        * @return      $debugInstance          An instance of this middleware class
+        * @param       $contentType    A valid content-type
+        * @return      $debugInstance  An instance of this middleware class
         */
        public final static function createConsoleOutput ($contentType) {
                // Cast the content-type to string
@@ -77,7 +71,7 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer {
        /**
         * Getter for an instance of this class
         *
-        * @return      $consoleInstance                An instance of this class
+        * @return      $consoleInstance        An instance of this class
         */
        public final static function getInstance() {
                if (is_null(self::$consoleInstance)) {
@@ -90,7 +84,7 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer {
        /**
         * Output the code
         *
-        * @param               $outStream      Something we shall sent to the console
+        * @param       $outStream      Something we shall sent to the console
         * @return      void
         */
        public final function output ($outStream=false) {
@@ -108,8 +102,8 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer {
        /**
         * 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 function assignVariable ($var, $value) {