Support for fflush().
Nothing will be output to the file, as this is a read-only stream wrapper.
bool FALSE, as no data will be stored.
Overrides PhpStreamWrapperInterface::stream_flush
http://php.net/manual/streamwrapper.stream-flush.php
public function stream_flush() {
trigger_error('stream_flush() not supported for read-only stream wrappers', E_USER_WARNING);
return FALSE;
}