Added stripTags (default: false) to allow stripping out HTML tags
[core.git] / inc / classes / main / output / class_ConsoleOutput.php
index 9545ef06a66a3a74dde7a6316b4425026ee15922..5df93cba746504da9f99c018c21fe567a89bd319 100644 (file)
@@ -84,9 +84,10 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer {
         * Output the code
         *
         * @param       $outStream      Something we shall sent to the console
+        * @param       $stripTags      Whether HTML tags shall be stripped out
         * @return      void
         */
-       public final function output ($outStream = false) {
+       public final function output ($outStream = false, $stripTags = false) {
                print trim($outStream) . chr(10);
        }
 }