X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Finterfaces%2Fio%2Foutput%2Fclass_OutputStreamer.php;h=70a08177d90af21cc552e746816e1b6e75f059df;hp=029bb3abe64699b8c268601da1d195648526b6bb;hb=0a638eea103f0f2b6c48374cb8d01e68893f5a65;hpb=c3106ae537f1d46274988826a070632a439e2c49 diff --git a/inc/classes/interfaces/io/output/class_OutputStreamer.php b/inc/classes/interfaces/io/output/class_OutputStreamer.php index 029bb3ab..70a08177 100644 --- a/inc/classes/interfaces/io/output/class_OutputStreamer.php +++ b/inc/classes/interfaces/io/output/class_OutputStreamer.php @@ -2,11 +2,11 @@ /** * An interface for output streams * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2013 Core Developer Team * @license GNU GPL 3.0 or any newer version - * @link http://www.ship-simu.org + * @link http://www.shipsimu.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 @@ -25,9 +25,11 @@ interface OutputStreamer extends Streamable { /** * Output the code * + * @param $outStream Stream to output + * @param $stripTags Whether HTML tags shall be stripped out * @return void */ - function output ($outStream = false); + function output ($outStream = FALSE, $stripTags = FALSE); } // [EOF]