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

Breadcrumb

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

function OutputStyle::writeln

Overrides OutputInterface::writeln

2 calls to OutputStyle::writeln()
SymfonyStyle::writeln in vendor/symfony/console/Style/SymfonyStyle.php
Writes a message to the output and adds a newline at the end.
SymfonyStyle::writeln in vendor/symfony/console/Style/SymfonyStyle.php
Writes a message to the output and adds a newline at the end.
1 method overrides OutputStyle::writeln()
SymfonyStyle::writeln in vendor/symfony/console/Style/SymfonyStyle.php
Writes a message to the output and adds a newline at the end.

File

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

Class

OutputStyle
Decorates output to add console style guide helpers.

Namespace

Symfony\Component\Console\Style

Code

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