public function StreamDecoratorTrait::write in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php \GuzzleHttp\Psr7\StreamDecoratorTrait::write()
2 methods override StreamDecoratorTrait::write()
- CachingStream::write in vendor/
guzzlehttp/ psr7/ src/ CachingStream.php - Write data to the stream.
- DroppingStream::write in vendor/
guzzlehttp/ psr7/ src/ DroppingStream.php - Write data to the stream.
File
- vendor/
guzzlehttp/ psr7/ src/ StreamDecoratorTrait.php, line 134
Class
- StreamDecoratorTrait
- Stream decorator trait @property StreamInterface stream
Namespace
GuzzleHttp\Psr7Code
public function write($string) {
return $this->stream
->write($string);
}