X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fdebug%2Fclass_DebugErrorLogOutput.php;h=1db4ae20cea9fa3447c0b6f6a6d5073d27ab6864;hp=2baf7917cd398858847e1814b1a5bb4623682843;hb=f5cf5211620c1813c76d8231819b63a585fb2689;hpb=6afa552b9bdcb28975cb1b28a247347284995424 diff --git a/inc/classes/main/debug/class_DebugErrorLogOutput.php b/inc/classes/main/debug/class_DebugErrorLogOutput.php index 2baf7917..1db4ae20 100644 --- a/inc/classes/main/debug/class_DebugErrorLogOutput.php +++ b/inc/classes/main/debug/class_DebugErrorLogOutput.php @@ -52,7 +52,7 @@ class DebugErrorLogOutput extends BaseFrameworkSystem implements Debugger, Outpu * @param $stripTags Whether HTML tags shall be stripped out * @return void */ - public final function outputStream ($output, $stripTags = false) { + public final function outputStream ($output, $stripTags = FALSE) { // Split multiple lines into and array to put them out line-by-line $errorLines = explode(chr(10), $output); @@ -76,9 +76,9 @@ class DebugErrorLogOutput extends BaseFrameworkSystem implements Debugger, Outpu * @param $stripTags Whether HTML tags shall be stripped out * @return void */ - public final function output ($outStream = false, $stripTags = false) { + public final function output ($outStream = FALSE, $stripTags = FALSE) { // Empty output will be silently ignored - if ($outStream !== false) { + if ($outStream !== FALSE) { $this->outputStream($outStream); } }