1 | <?php |
||
16 | trait HasOutputTrait |
||
17 | { |
||
18 | /** |
||
19 | * @var OutputInterface |
||
20 | */ |
||
21 | protected $output; |
||
22 | |||
23 | /** |
||
24 | * @param OutputInterface $output |
||
25 | */ |
||
26 | public function setOutput(OutputInterface $output) |
||
30 | |||
31 | /** |
||
32 | * @return OutputInterface |
||
33 | */ |
||
34 | public function getOutput(): OutputInterface |
||
38 | } |
||
39 | |||
40 |