[ Index ]

PHP Cross Reference of phpBB-3.2.11-deutsch

title

Body

[close]

/vendor/symfony/console/Output/ -> ConsoleOutput.php (summary)

(no description)

File Size: 151 lines (4 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

ConsoleOutput:: (11 methods):
  __construct()
  setDecorated()
  setFormatter()
  setVerbosity()
  getErrorOutput()
  setErrorOutput()
  hasStdoutSupport()
  hasStderrSupport()
  isRunningOS400()
  openOutputStream()
  openErrorStream()


Class: ConsoleOutput  - X-Ref

ConsoleOutput is the default class for all CLI output. It uses STDOUT.

This class is a convenient wrapper around `StreamOutput`.

$output = new ConsoleOutput();

This is equivalent to:

$output = new StreamOutput(fopen('php://stdout', 'w'));

__construct($verbosity = self::VERBOSITY_NORMAL, $decorated = null, OutputFormatterInterface $formatter = null)   X-Ref

param: int                           $verbosity The verbosity level (one of the VERBOSITY constants in OutputInterface)
param: bool|null                     $decorated Whether to decorate messages (null for auto-guessing)
param: OutputFormatterInterface|null $formatter Output formatter instance (null to use default OutputFormatter)

setDecorated($decorated)   X-Ref
{@inheritdoc}


setFormatter(OutputFormatterInterface $formatter)   X-Ref
{@inheritdoc}


setVerbosity($level)   X-Ref
{@inheritdoc}


getErrorOutput()   X-Ref
{@inheritdoc}


setErrorOutput(OutputInterface $error)   X-Ref
{@inheritdoc}


hasStdoutSupport()   X-Ref
Returns true if current environment supports writing console output to
STDOUT.

return: bool

hasStderrSupport()   X-Ref
Returns true if current environment supports writing console output to
STDERR.

return: bool

isRunningOS400()   X-Ref
Checks if current executing environment is IBM iSeries (OS400), which
doesn't properly convert character-encodings between ASCII to EBCDIC.

return: bool

openOutputStream()   X-Ref

return: resource

openErrorStream()   X-Ref

return: resource



Generated: Wed Nov 11 20:33:01 2020 Cross-referenced by PHPXref 0.7.1