public function HttpStreamWrapper::stream_read in Remote Stream Wrapper 8
Return value
string
Overrides PhpStreamWrapperInterface::stream_read
File
- src/
StreamWrapper/ HttpStreamWrapper.php, line 159
Class
- HttpStreamWrapper
- HTTP(s) stream wrapper.
Namespace
Drupal\remote_stream_wrapper\StreamWrapperCode
public function stream_read($count) {
return $this->stream
->read($count);
}