X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Foutput%2Fclass_ConsoleOutput.php;h=bcc1fc5eb8d91bc0674fcb25c0b58a2c1c73e3a0;hp=dfba40dce91e02afa83942143d6426ebce45ea45;hb=8ff12f905898b0c2b7ff8124c9749ad6fb9c44f3;hpb=55b327a3f5f2fe1d244532e07be7444e94b2a768 diff --git a/inc/classes/main/output/class_ConsoleOutput.php b/inc/classes/main/output/class_ConsoleOutput.php index dfba40d..bcc1fc5 100644 --- a/inc/classes/main/output/class_ConsoleOutput.php +++ b/inc/classes/main/output/class_ConsoleOutput.php @@ -5,7 +5,7 @@ * * @author Roland Haeder * @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 * @@ -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->generateUniqueId(); } /** * 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,13 +84,13 @@ 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) { if ($outStream === false) { // Output something here... - foreach ($this->vars as $var=>$value) { + foreach ($this->vars as $var => $value) { $this->output("var=".$var.", value=".$value.""); } } else { @@ -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) {