Back to StreamString class

Method stream_flush

public bool
stream_flush
()
Stream flush, always returns true.
Returns
  • bool
Since
  • 1.7.0
-
  • Data storage is not supported
Class: StreamString
Project: Joomla

Method stream_flush - Source code

/**
 * Stream flush, always returns true.
 *
 * @return  boolean
 *
 * @since   1.7.0
 * @note    Data storage is not supported
 */
public function stream_flush()
{
    // We don't store data.
    return true;
}