| Total Complexity | 2 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class ProgressBarHelper implements ProgressBarHelperInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var \Symfony\Component\Console\Helper\ProgressBar |
||
| 18 | */ |
||
| 19 | protected $progressBar; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param \Symfony\Component\Console\Output\OutputInterface $output |
||
| 23 | * @param string $resourceType |
||
| 24 | * @param int $totalCount |
||
| 25 | * |
||
| 26 | * @return \Symfony\Component\Console\Helper\ProgressBar |
||
| 27 | */ |
||
| 28 | public function startProgressBar( |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param \Symfony\Component\Console\Output\OutputInterface $output |
||
| 42 | * @param int $count |
||
| 43 | * @param string $resourceType |
||
| 44 | * |
||
| 45 | * @return \Symfony\Component\Console\Helper\ProgressBar |
||
| 46 | */ |
||
| 47 | protected function generateProgressBar(OutputInterface $output, $count, $resourceType): ProgressBar |
||
| 54 |