Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2.0116 |
Changes | 0 |
1 | <?php |
||
47 | 4 | protected function createProgressBar(InputInterface $input, OutputInterface $output, $steps) |
|
48 | { |
||
49 | 4 | if ($input->hasOption('no-progress')) { |
|
50 | $output = new NullOutput(); |
||
51 | } |
||
52 | |||
53 | 4 | $progress = new ProgressBar($output, $steps); |
|
54 | 4 | $progress->setFormat(' %current%/%max% [%bar%] %percent:3s%% %memory:6s% %message%'); |
|
55 | 4 | $progress->setRedrawFrequency(1); |
|
56 | |||
57 | 4 | return $progress; |
|
58 | } |
||
59 | |||
68 |