public function StreamDecoratorTrait::isWritable in Auth0 Single Sign On 8.2
1 method overrides StreamDecoratorTrait::isWritable()
- MultipartStream::isWritable in vendor/
guzzlehttp/ psr7/ src/ MultipartStream.php - Returns whether or not the stream is writable.
File
- vendor/
guzzlehttp/ psr7/ src/ StreamDecoratorTrait.php, line 109
Class
- StreamDecoratorTrait
- Stream decorator trait @property StreamInterface stream
Namespace
GuzzleHttp\Psr7Code
public function isWritable() {
return $this->stream
->isWritable();
}