Writes data to the buffer.
Overrides StreamInterface::write
public function write($string) : int { $this->buffer .= $string; if (strlen($this->buffer) >= $this->hwm) { return 0; } return strlen($string); }