1 | <?php |
||
7 | class CommandTasks |
||
8 | { |
||
9 | /** |
||
10 | * @var \Illuminate\Console\OutputStyle |
||
11 | */ |
||
12 | protected $output; |
||
13 | |||
14 | /** |
||
15 | * @var array |
||
16 | */ |
||
17 | protected $results = []; |
||
18 | |||
19 | public function setOutput(OutputStyle $output) : self |
||
25 | |||
26 | public function addTask($name, $result) : self |
||
32 | |||
33 | public function outputResults() : void |
||
42 | |||
43 | public function getResults() : array |
||
47 | } |
||
48 |