Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
35 | public function start() |
||
36 | { |
||
37 | if (!$this->isStarted) { |
||
38 | $this->isStarted = true; |
||
39 | $this->progressBar = new \Symfony\Component\Console\Helper\ProgressBar($this->output, $this->max); |
||
40 | $this->progressBar->setFormat($this->format); |
||
41 | $this->progressBar->setBarWidth($this->width); |
||
42 | } |
||
43 | $this->progressBar->start(); |
||
44 | } |
||
45 | |||
62 |