Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function startProgressBar( |
||
26 | OutputInterface $output, |
||
27 | $resourceType, |
||
28 | $totalCount |
||
29 | ) { |
||
30 | $this->progressBar = $this->generateProgressBar($output, $totalCount, $resourceType); |
||
31 | $this->progressBar->start(); |
||
32 | $this->progressBar->advance(0); |
||
33 | |||
34 | return $this->progressBar; |
||
35 | } |
||
50 |