Overrides Output::doWrite
protected function doWrite(string $message, bool $newline) : void { $this->buffer .= $message; if ($newline) { $this->buffer .= \PHP_EOL; } $this->buffer = substr($this->buffer, -$this->maxLength); }