public function MultipartStream::isWritable in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/guzzlehttp/psr7/src/MultipartStream.php \GuzzleHttp\Psr7\MultipartStream::isWritable()
Returns whether or not the stream is writable.
Return value
bool
Overrides StreamDecoratorTrait::isWritable
File
- vendor/
guzzlehttp/ psr7/ src/ MultipartStream.php, line 44
Class
- MultipartStream
- Stream that when read returns bytes for a streaming multipart or multipart/form-data stream.
Namespace
GuzzleHttp\Psr7Code
public function isWritable() {
return false;
}