You are here

public function ConsoleOutput::getErrorOutput 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::getErrorOutput()

Gets the OutputInterface for errors.

Return value

OutputInterface

Overrides ConsoleOutputInterface::getErrorOutput

File

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

Class

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

Namespace

Symfony\Component\Console\Output

Code

public function getErrorOutput() {
  return $this->stderr;
}