]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/debug/class_DebugErrorLogOutput.php
Added method stubs to satisfy interface
[core.git] / inc / classes / main / debug / class_DebugErrorLogOutput.php
index 3fa1f719d5c34cf2957bd488f4b51971f350b4ed..9c7413758797646b34d12a6e2256488b2172e1ea 100644 (file)
@@ -79,6 +79,18 @@ class DebugErrorLogOutput extends BaseFrameworkSystem implements Debugger, Outpu
                        $this->outputStream($outStream);
                }
        }
+
+       /**
+        * Streams the data and maybe does something to it
+        *
+        * @param       $data   The data (string mostly) to "stream"
+        * @return      $data   The data (string mostly) to "stream"
+        * @throws      UnsupportedOperationException   If this method is called
+        */
+       public function streamData ($data) {
+               $this->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.');
+               throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
+       }
 }
 
 // [EOF]