123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace Symfony\Component\Console\Output;
- interface ConsoleOutputInterface extends OutputInterface
- {
-
- public function getErrorOutput(): OutputInterface;
-
- public function setErrorOutput(OutputInterface $error);
- public function section(): ConsoleSectionOutput;
- }
|