You are here

public function Stream::isWritable in Zircon Profile 8

Same name in this branch
  1. 8 vendor/zendframework/zend-diactoros/src/Stream.php \Zend\Diactoros\Stream::isWritable()
  2. 8 vendor/guzzlehttp/psr7/src/Stream.php \GuzzleHttp\Psr7\Stream::isWritable()
  3. 8 vendor/symfony/psr-http-message-bridge/Tests/Fixtures/Stream.php \Symfony\Bridge\PsrHttpMessage\Tests\Fixtures\Stream::isWritable()
Same name and namespace in other branches
  1. 8.0 vendor/guzzlehttp/psr7/src/Stream.php \GuzzleHttp\Psr7\Stream::isWritable()

Returns whether or not the stream is writable.

Return value

bool

Overrides StreamInterface::isWritable

File

vendor/guzzlehttp/psr7/src/Stream.php, line 164

Class

Stream
PHP stream implementation.

Namespace

GuzzleHttp\Psr7

Code

public function isWritable() {
  return $this->writable;
}