/**
  * Output the specified text on the specified output stream
  * @param string $text Text to output
  * @param string The output stream to output message on. Default Std Out
  */
 protected function write($text = '', $stream = 'STD_OUT')
 {
     DooCliApp::write($text, $stream);
 }