Added method stubs to satisfy interface
[core.git] / inc / classes / main / debug / class_DebugWebOutput.php
index b7ac4f0abc5fa7f5424cf8f36053cdd14ca19b0b..b70ca337aa2670b6412d7b51938a1cc6c96551e2 100644 (file)
@@ -68,6 +68,18 @@ class DebugWebOutput extends BaseFrameworkSystem implements Debugger, OutputStre
                        $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]