$defaultCommand = $this->getConfigInstance()->readConfig('default_console_command');
return $defaultCommand;
}
+
+ /**
+ * Flushs the cached console response to the console
+ *
+ * @param $force Wether we shall force the output or abort if headers are
+ * already sent with an exception
+ * @return void
+ * @throws ResponseHeadersAlreadySentException Thrown if headers are
+ * already sent
+ */
+ public function flushBuffer ($force = false) {
+ $this->partialStub('Please implement this class.');
+ }
}
// [EOF]