Renamed Registry -> GenericRegistry to make it clear that this registry does
[core.git] / framework / main / classes / output / debug / error / class_DebugErrorLogOutput.php
index 2ea7da73535aca82765f6d9d4be5e2327910d575..2a7978695de5576ea631cf408a6aa0b84a305522 100644 (file)
@@ -1,11 +1,12 @@
 <?php
 // Own namespace
-namespace CoreFramework\Output\Debug;
+namespace Org\Mxchange\CoreFramework\Output\Debug;
 
 // Import framework stuff
-use CoreFramework\Debug\Debugger;
-use CoreFramework\Output\Debug\BaseDebugOutput;
-use CoreFramework\Stream\Output\OutputStreamer;
+use Org\Mxchange\CoreFramework\Debug\Debugger;
+use Org\Mxchange\CoreFramework\Generic\UnsupportedOperationException;
+use Org\Mxchange\CoreFramework\Output\Debug\BaseDebugOutput;
+use Org\Mxchange\CoreFramework\Stream\Output\OutputStreamer;
 
 /**
  * A debug output class for PHP's error_log() command
@@ -60,7 +61,7 @@ class DebugErrorLogOutput extends BaseDebugOutput implements Debugger, OutputStr
         * @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);
 
@@ -84,11 +85,11 @@ class DebugErrorLogOutput extends BaseDebugOutput implements Debugger, OutputStr
         * @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);
-               }
+               } // END - if
        }
 
        /**