Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. BufferedOutput.php

function BufferedOutput::doWrite

Overrides Output::doWrite

File

vendor/symfony/console/Output/BufferedOutput.php, line 32

Class

BufferedOutput
@author Jean-François Simon <contact@jfsimon.fr>

Namespace

Symfony\Component\Console\Output

Code

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

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal