You are here

interface ConsoleOutputInterface in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Output/ConsoleOutputInterface.php \Symfony\Component\Console\Output\ConsoleOutputInterface

ConsoleOutputInterface is the interface implemented by ConsoleOutput class. This adds information about stderr output stream.

@author Dariusz Górecki <darek.krk@gmail.com>

Hierarchy

Expanded class hierarchy of ConsoleOutputInterface

All classes that implement ConsoleOutputInterface

6 files declare their use of ConsoleOutputInterface
Application.php in vendor/symfony/console/Application.php
ConsoleLogger.php in vendor/symfony/console/Logger/ConsoleLogger.php
DebugHandlersListener.php in vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php
ProcessHelper.php in vendor/symfony/console/Helper/ProcessHelper.php
ProgressBar.php in vendor/symfony/console/Helper/ProgressBar.php

... See full list

File

vendor/symfony/console/Output/ConsoleOutputInterface.php, line 20

Namespace

Symfony\Component\Console\Output
View source
interface ConsoleOutputInterface extends OutputInterface {

  /**
   * Gets the OutputInterface for errors.
   *
   * @return OutputInterface
   */
  public function getErrorOutput();

  /**
   * Sets the OutputInterface used for errors.
   *
   * @param OutputInterface $error
   */
  public function setErrorOutput(OutputInterface $error);

}

Members

Namesort descending Modifiers Type Description Overrides
ConsoleOutputInterface::getErrorOutput public function Gets the OutputInterface for errors. 1
ConsoleOutputInterface::setErrorOutput public function Sets the OutputInterface used for errors. 1
OutputInterface::getFormatter public function Returns current output formatter instance. 3
OutputInterface::getVerbosity public function Gets the current verbosity of the output. 3
OutputInterface::isDecorated public function Gets the decorated flag. 3
OutputInterface::OUTPUT_NORMAL constant
OutputInterface::OUTPUT_PLAIN constant
OutputInterface::OUTPUT_RAW constant
OutputInterface::setDecorated public function Sets the decorated flag. 3
OutputInterface::setFormatter public function Sets output formatter. 3
OutputInterface::setVerbosity public function Sets the verbosity of the output. 3
OutputInterface::VERBOSITY_DEBUG constant
OutputInterface::VERBOSITY_NORMAL constant
OutputInterface::VERBOSITY_QUIET constant
OutputInterface::VERBOSITY_VERBOSE constant
OutputInterface::VERBOSITY_VERY_VERBOSE constant
OutputInterface::write public function Writes a message to the output. 3
OutputInterface::writeln public function Writes a message to the output and adds a newline at the end. 3