BufferedOutput.php
2 years ago
ConsoleOutput.php
1 year ago
ConsoleOutputInterface.php
2 years ago
ConsoleSectionOutput.php
1 year ago
NullOutput.php
1 year ago
Output.php
1 year ago
OutputInterface.php
1 year ago
StreamOutput.php
1 year ago
TrimmedBufferOutput.php
1 year ago
ConsoleOutputInterface.php
30 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 Matomo\Dependencies\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 | */ |
| 19 | interface ConsoleOutputInterface extends OutputInterface |
| 20 | { |
| 21 | /** |
| 22 | * Gets the OutputInterface for errors. |
| 23 | * |
| 24 | * @return OutputInterface |
| 25 | */ |
| 26 | public function getErrorOutput(); |
| 27 | public function setErrorOutput(OutputInterface $error); |
| 28 | public function section() : ConsoleSectionOutput; |
| 29 | } |
| 30 |