Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | public function create(int $max = 0) |
||
23 | { |
||
24 | $bar = $this->output->createProgressBar($max); |
||
25 | $bar->setBarCharacter('<fg=green>⚬</>'); |
||
26 | $bar->setEmptyBarCharacter('<fg=red>⚬</>'); |
||
27 | $bar->setProgressCharacter('<fg=green>➤</>'); |
||
28 | $bar->setFormat( |
||
29 | "%message%\n%current%/%max% [%bar%] %percent:3s%%\n" |
||
30 | ); |
||
31 | |||
32 | return $bar; |
||
33 | } |
||
35 |