570afed2bed8768150b62b576762f67b3d70dc21
[yaffs-website] / vendor / consolidation / robo / src / Contract / OutputAwareInterface.php
1 <?php
2
3 /**
4  * Provide OutputAwareInterface, not present in Symfony Console
5  */
6
7 namespace Robo\Contract;
8
9 use Symfony\Component\Console\Output\OutputInterface;
10
11 interface OutputAwareInterface
12 {
13     /**
14      * Sets the Console Output.
15      *
16      * @param \Symfony\Component\Console\Output\OutputInterface $output
17      */
18     public function setOutput(OutputInterface $output);
19 }