Skip to content

Commit

Permalink
Update ProgressTrait.php
Browse files Browse the repository at this point in the history
  • Loading branch information
freost committed Nov 3, 2024
1 parent e88d3c9 commit 4a057ac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ protected function buildProgressBar(float $percent): string
{
$fill = (int) floor($percent * $this->width);

$progress = number_format($percent * 100, 2, '.', '');
$progress = number_format($percent * 100, 2, '.');

return str_pad($this->progress, strlen($this->itemCount), '0', STR_PAD_LEFT)
. "/{$this->itemCount} "
Expand Down

0 comments on commit 4a057ac

Please sign in to comment.