public function LocalReadOnlyStream::stream_flush in System stream wrapper 8
Support for fflush().
Nothing will be output to the file, as this is a read-only stream wrapper. However as stream_flush is called during stream_close we should not trigger an error.
Return value
bool FALSE, as no data will be stored.
Overrides LocalStream::stream_flush
See also
http://php.net/manual/streamwrapper.stream-flush.php
File
- src/
StreamWrapper/ LocalReadOnlyStream.php, line 113
Class
- LocalReadOnlyStream
- Defines a read-only Drupal stream wrapper base class for local files.
Namespace
Drupal\system_stream_wrapper\StreamWrapperCode
public function stream_flush() {
return FALSE;
}