X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Finterfaces%2Fdebug%2Fclass_Debugger.php;h=f053599f0284f3bd0e966dcda6629c75a875f2c3;hp=0520e552165937118231ffd856a43f150e229337;hb=1ee35e6d96c456b8e3499bd683f1647aa28bd501;hpb=607a11e2c22949ea0647568c17d62a605595e83b diff --git a/inc/classes/interfaces/debug/class_Debugger.php b/inc/classes/interfaces/debug/class_Debugger.php index 0520e552..f053599f 100644 --- a/inc/classes/interfaces/debug/class_Debugger.php +++ b/inc/classes/interfaces/debug/class_Debugger.php @@ -2,11 +2,11 @@ /** * An interface for debugger classes * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2014 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,10 +25,11 @@ interface Debugger extends FrameworkInterface { /** * Outputs the given data * - * @param $output Debug text for output + * @param $output Debug text for output + * @param $stripTags Whether HTML tags shall be stripped out * @return void */ - function outputStream ($output); + function outputStream ($output, $stripTags = FALSE); } // [EOF]