You are here

protected function ConsoleOutput::hasStderrSupport in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Output/ConsoleOutput.php \Symfony\Component\Console\Output\ConsoleOutput::hasStderrSupport()

Returns true if current environment supports writing console output to STDERR.

Return value

bool

1 call to ConsoleOutput::hasStderrSupport()
ConsoleOutput::openErrorStream in vendor/symfony/console/Output/ConsoleOutput.php

File

vendor/symfony/console/Output/ConsoleOutput.php, line 115

Class

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

Namespace

Symfony\Component\Console\Output

Code

protected function hasStderrSupport() {
  return false === $this
    ->isRunningOS400();
}