You are here

public function PhpInputStream::isWritable in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/zendframework/zend-diactoros/src/PhpInputStream.php \Zend\Diactoros\PhpInputStream::isWritable()

Returns whether or not the stream is writable.

Return value

bool

Overrides Stream::isWritable

File

vendor/zendframework/zend-diactoros/src/PhpInputStream.php, line 53

Class

PhpInputStream
Caching version of php://input

Namespace

Zend\Diactoros

Code

public function isWritable() {
  return false;
}