public function StreamWrapper::stream_write in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/guzzlehttp/psr7/src/StreamWrapper.php \GuzzleHttp\Psr7\StreamWrapper::stream_write()
File
- vendor/
guzzlehttp/ psr7/ src/ StreamWrapper.php, line 75
Class
- StreamWrapper
- Converts Guzzle streams into PHP stream resources.
Namespace
GuzzleHttp\Psr7Code
public function stream_write($data) {
return (int) $this->stream
->write($data);
}