Skip to content

Commit

Permalink
Update Bar.php
Browse files Browse the repository at this point in the history
Just removed a double ';' in the code
  • Loading branch information
marcovalloni authored Apr 20, 2018
1 parent dcdef5d commit a644472
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cli/progress/Bar.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class Bar extends Progress {
public function display($finish = false) {
$_percent = $this->percent();

$percent = str_pad(floor($_percent * 100), 3);;
$percent = str_pad(floor($_percent * 100), 3);
$msg = $this->_message;
$msg = Streams::render($this->_formatMessage, compact('msg', 'percent'));

Expand Down

0 comments on commit a644472

Please sign in to comment.