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