/home/techb158/exp.abdallabala.com/vendor/symfony/console/Output
NameSizeModeActions
BufferedOutput.php8410644editdlrm
ConsoleOutput.php40070644editdlrm
ConsoleOutputInterface.php7340644editdlrm
NullOutput.php21580644editdlrm
Output.php44750644editdlrm
OutputInterface.php33430644editdlrm
StreamOutput.php36950644editdlrm
Edit: /home/techb158/exp.abdallabala.com/vendor/symfony/console/Output/ConsoleOutputInterface.php (734B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Output; /** * ConsoleOutputInterface is the interface implemented by ConsoleOutput class. * This adds information about stderr output stream. * * @author Dariusz Górecki */ interface ConsoleOutputInterface extends OutputInterface { /** * Gets the OutputInterface for errors. * * @return OutputInterface */ public function getErrorOutput(); public function setErrorOutput(OutputInterface $error); }