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

Breadcrumb

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

function OutputStyle::write

Overrides OutputInterface::write

2 calls to OutputStyle::write()
SymfonyStyle::write in vendor/symfony/console/Style/SymfonyStyle.php
Writes a message to the output.
SymfonyStyle::write in vendor/symfony/console/Style/SymfonyStyle.php
Writes a message to the output.
1 method overrides OutputStyle::write()
SymfonyStyle::write in vendor/symfony/console/Style/SymfonyStyle.php
Writes a message to the output.

File

vendor/symfony/console/Style/OutputStyle.php, line 41

Class

OutputStyle
Decorates output to add console style guide helpers.

Namespace

Symfony\Component\Console\Style

Code

public function write(string|iterable $messages, bool $newline = false, int $type = self::OUTPUT_NORMAL) : void {
    $this->output
        ->write($messages, $newline, $type);
}
RSS feed
Powered by Drupal