/** * Write data to server or to buffer * * @param string $data * * @return self */ public function write($data) { $this->buffer .= $data; if (!$this->buffering) { $this->request->write($data); } return $this; }