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