interface ConsoleOutputInterface in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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
- interface \Symfony\Component\Console\Output\OutputInterface
- interface \Symfony\Component\Console\Output\ConsoleOutputInterface
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
File
- vendor/
symfony/ console/ Output/ ConsoleOutputInterface.php, line 20
Namespace
Symfony\Component\Console\OutputView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConsoleOutputInterface:: |
public | function | Gets the OutputInterface for errors. | 1 |
ConsoleOutputInterface:: |
public | function | Sets the OutputInterface used for errors. | 1 |
OutputInterface:: |
public | function | Returns current output formatter instance. | 3 |
OutputInterface:: |
public | function | Gets the current verbosity of the output. | 3 |
OutputInterface:: |
public | function | Gets the decorated flag. | 3 |
OutputInterface:: |
constant | |||
OutputInterface:: |
constant | |||
OutputInterface:: |
constant | |||
OutputInterface:: |
public | function | Sets the decorated flag. | 3 |
OutputInterface:: |
public | function | Sets output formatter. | 3 |
OutputInterface:: |
public | function | Sets the verbosity of the output. | 3 |
OutputInterface:: |
constant | |||
OutputInterface:: |
constant | |||
OutputInterface:: |
constant | |||
OutputInterface:: |
constant | |||
OutputInterface:: |
constant | |||
OutputInterface:: |
public | function | Writes a message to the output. | 3 |
OutputInterface:: |
public | function | Writes a message to the output and adds a newline at the end. | 3 |