| 1 | <?php |
||
| 11 | class OutputFactory |
||
| 12 | { |
||
| 13 | /** @var OutputInterface */ |
||
| 14 | private static $output; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @return OutputInterface |
||
| 18 | * @throws \RuntimeException |
||
| 19 | */ |
||
| 20 | 36 | public static function getOutput(): OutputInterface |
|
| 28 | |||
| 29 | 56 | public static function setOutput(OutputInterface $output) |
|
| 33 | } |
||
| 34 |