Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: namespace Symfony\Component\Console\Output; Chris@0: Chris@0: /** Chris@0: * ConsoleOutputInterface is the interface implemented by ConsoleOutput class. Chris@0: * This adds information about stderr output stream. Chris@0: * Chris@0: * @author Dariusz Górecki Chris@0: */ Chris@0: interface ConsoleOutputInterface extends OutputInterface Chris@0: { Chris@0: /** Chris@0: * Gets the OutputInterface for errors. Chris@0: * Chris@0: * @return OutputInterface Chris@0: */ Chris@0: public function getErrorOutput(); Chris@0: Chris@0: public function setErrorOutput(OutputInterface $error); Chris@0: }