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

Breadcrumb

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

function SymfonyStyle::write

Overrides OutputStyle::write

File

vendor/symfony/console/Style/SymfonyStyle.php, line 331

Class

SymfonyStyle
Output decorator helpers for the Symfony Style Guide.

Namespace

Symfony\Component\Console\Style

Code

public function write(string|iterable $messages, bool $newline = false, int $type = self::OUTPUT_NORMAL) : void {
    if (!is_iterable($messages)) {
        $messages = [
            $messages,
        ];
    }
    foreach ($messages as $message) {
        parent::write($message, $newline, $type);
        $this->writeBuffer($message, $newline, $type);
    }
}

API Navigation

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