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