BufferedOutput.php
2 years ago
ConsoleOutput.php
2 years ago
ConsoleOutputInterface.php
2 years ago
ConsoleSectionOutput.php
2 years ago
NullOutput.php
2 years ago
Output.php
2 years ago
OutputInterface.php
2 years ago
StreamOutput.php
2 years ago
TrimmedBufferOutput.php
2 years ago
ConsoleOutputInterface.php
31 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * This file is part of the Symfony package. |
| 5 | * |
| 6 | * (c) Fabien Potencier <fabien@symfony.com> |
| 7 | * |
| 8 | * For the full copyright and license information, please view the LICENSE |
| 9 | * file that was distributed with this source code. |
| 10 | */ |
| 11 | namespace IAWP_SCOPED\Symfony\Component\Console\Output; |
| 12 | |
| 13 | /** |
| 14 | * ConsoleOutputInterface is the interface implemented by ConsoleOutput class. |
| 15 | * This adds information about stderr and section output stream. |
| 16 | * |
| 17 | * @author Dariusz Górecki <darek.krk@gmail.com> |
| 18 | * @internal |
| 19 | */ |
| 20 | interface ConsoleOutputInterface extends OutputInterface |
| 21 | { |
| 22 | /** |
| 23 | * Gets the OutputInterface for errors. |
| 24 | * |
| 25 | * @return OutputInterface |
| 26 | */ |
| 27 | public function getErrorOutput(); |
| 28 | public function setErrorOutput(OutputInterface $error); |
| 29 | public function section() : ConsoleSectionOutput; |
| 30 | } |
| 31 |