]> git.mxchange.org Git - core.git/blobdiff - framework/main/classes/output/debug/web/class_DebugWebOutput.php
Continued:
[core.git] / framework / main / classes / output / debug / web / class_DebugWebOutput.php
index 2a6ad5d43d94bd19b5bd66e07eb141061223a695..2f87522c15b5abb4c1eb458a2f73396a9771fc10 100644 (file)
@@ -1,19 +1,19 @@
 <?php
 // Own namespace
-namespace CoreFramework\Output\Debug;
+namespace Org\Mxchange\CoreFramework\Output\Debug;
 
 // Import framework stuff
-use CoreFramework\Debug\Debugger;
-use CoreFramework\Generic\UnsupportedOperationException;
-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 the web browser
  *
  * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2020 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.shipsimu.org
  *
@@ -62,9 +62,9 @@ class DebugWebOutput extends BaseDebugOutput implements Debugger, OutputStreamer
         * @return      void
         */
        public final function outputStream ($output, $stripTags = false) {
-               // Strip out <br />
+               // Strip out any <br />
                $output = str_replace('<br />', '', $output);
-               print(stripslashes($output)."<br />\n");
+               printf('<!-- %s -->' . PHP_EOL, stripslashes($output));
        }
 
        /**
@@ -88,7 +88,7 @@ class DebugWebOutput extends BaseDebugOutput implements Debugger, OutputStreamer
         * @return      $data   The data (string mostly) to "stream"
         * @throws      UnsupportedOperationException   If this method is called
         */
-       public function streamData ($data) {
+       public function streamData (string $data) {
                self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.');
                throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
        }
@@ -111,8 +111,8 @@ class DebugWebOutput extends BaseDebugOutput implements Debugger, OutputStreamer
         * @return      $status         Status of file seek: 0 = success, -1 = failed
         * @throws      UnsupportedOperationException   If this method is called
         */
-       public function seek ($offset, $whence = SEEK_SET) {
-               self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('[' . __METHOD__ . ':' . __LINE__ . '] offset=' . $offset . ',whence=' . $whence);
+       public function seek (int $offset, int $whence = SEEK_SET) {
+               self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DEBUG-WEB-OUTPUT: offset=' . $offset . ',whence=' . $whence);
                throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
        }