/var/www/vhosts/ihelp.ro/httpdocs/vendor/symfony/console/Output
NameSizeModeActions
AnsiColorMode.php35430644editdlrm
BufferedOutput.php8380644editdlrm
ConsoleOutput.php48740644editdlrm
ConsoleOutputInterface.php8150644editdlrm
ConsoleSectionOutput.php84770644editdlrm
NullOutput.php20830644editdlrm
Output.php42980644editdlrm
OutputInterface.php27610644editdlrm
StreamOutput.php34800644editdlrm
TrimmedBufferOutput.php15840644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/symfony/console/Output/ConsoleOutputInterface.php (815B)
* * 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 and section output stream. * * @author Dariusz Górecki */ interface ConsoleOutputInterface extends OutputInterface { /** * Gets the OutputInterface for errors. */ public function getErrorOutput(): OutputInterface; /** * @return void */ public function setErrorOutput(OutputInterface $error); public function section(): ConsoleSectionOutput; }