setPartDescr("Debug-Ausgabe auf Konsole"); // Create an unique ID $this->createUniqueID(); } /** * Creates an instance of this class * * @return $debugInstance The prepared debug instance */ public final static function createDebugWebOutput () { // Get a new instance $debugInstance = new DebugWebOutput(); // Return it return $debugInstance; } /** * Outputs the given data directly * * @param $output The HTML output * @return void */ public final function outputStream ($output) { trigger_error($output); } } // [EOF] ?>