You are here

protected function ConsoleOutput::hasStdoutSupport 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::hasStdoutSupport()

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

Return value

bool

1 call to ConsoleOutput::hasStdoutSupport()
ConsoleOutput::openOutputStream in vendor/symfony/console/Output/ConsoleOutput.php

File

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

Class

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

Namespace

Symfony\Component\Console\Output

Code

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