1 | <?php |
||
13 | final class ShowProgress |
||
14 | { |
||
15 | /** |
||
16 | * @var OutputInterface |
||
17 | */ |
||
18 | private $output; |
||
19 | |||
20 | /** |
||
21 | * @var ProgressBar |
||
22 | */ |
||
23 | private $progressBar; |
||
24 | |||
25 | public function __construct(OutputInterface $output) |
||
29 | |||
30 | public function init(int $stepCount) |
||
34 | |||
35 | public function advance() |
||
39 | |||
40 | public function finish() |
||
44 | } |
||
45 |