summaryrefslogtreecommitdiff
path: root/vendor/symfony/console/Output/ConsoleOutputInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/symfony/console/Output/ConsoleOutputInterface.php')
-rw-r--r--vendor/symfony/console/Output/ConsoleOutputInterface.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/vendor/symfony/console/Output/ConsoleOutputInterface.php b/vendor/symfony/console/Output/ConsoleOutputInterface.php
new file mode 100644
index 0000000..1f8f147
--- /dev/null
+++ b/vendor/symfony/console/Output/ConsoleOutputInterface.php
@@ -0,0 +1,30 @@
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
12namespace Symfony\Component\Console\Output;
13
14/**
15 * ConsoleOutputInterface is the interface implemented by ConsoleOutput class.
16 * This adds information about stderr and section output stream.
17 *
18 * @author Dariusz Górecki <darek.krk@gmail.com>
19 */
20interface ConsoleOutputInterface extends OutputInterface
21{
22 /**
23 * Gets the OutputInterface for errors.
24 */
25 public function getErrorOutput(): OutputInterface;
26
27 public function setErrorOutput(OutputInterface $error): void;
28
29 public function section(): ConsoleSectionOutput;
30}