Zend\Diactoros\RelativeStream::write PHP Method

write() public method

public write ( $string )
    public function write($string)
    {
        if ($this->tell() < 0) {
            throw new RuntimeException('Invalid pointer position');
        }
        return $this->decoratedStream->write($string);
    }