]> git.mxchange.org Git - core.git/blobdiff - framework/main/interfaces/io/output/class_OutputStreamer.php
Continued:
[core.git] / framework / main / interfaces / io / output / class_OutputStreamer.php
index c534338df663d52c97ad94a4e57a949eee7b9090..eb4fd1100f4095b67cac74557af7fe04010b30c7 100644 (file)
@@ -1,16 +1,16 @@
 <?php
 // Own namespace
-namespace CoreFramework\Stream\Output;
+namespace Org\Mxchange\CoreFramework\Stream\Output;
 
 // Own framework stuff
-use CoreFramework\Stream\Output\StreamableOutput;
+use Org\Mxchange\CoreFramework\Stream\Output\StreamableOutput;
 
 /**
  * An interface for output streams
  *
  * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2023 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.shipsimu.org
  *
@@ -35,6 +35,6 @@ interface OutputStreamer extends StreamableOutput {
         * @param       $stripTags      Whether HTML tags shall be stripped out
         * @return      void
         */
-       function output ($outStream = false, $stripTags = false);
+       function output (string $outStream = '', bool $stripTags = false);
 
 }