Added stripTags (default: false) to allow stripping out HTML tags
[core.git] / inc / classes / interfaces / io / output / class_OutputStreamer.php
index 57ddaaf0de67da137730b154d6a637a4d70acb97..b34165737bcab729ef479a8c1a751bfbc8e6750c 100644 (file)
@@ -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]