Skip to content

Commit a644472

Browse files
authored
Update Bar.php
Just removed a double ';' in the code
1 parent dcdef5d commit a644472

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/cli/progress/Bar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class Bar extends Progress {
4747
public function display($finish = false) {
4848
$_percent = $this->percent();
4949

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

0 commit comments

Comments
 (0)