@@ -18,13 +18,13 @@ |
||
| 18 | 18 | $this->progressBarWidth = $this->advanceSteps = $progressBarWidth ?? $this->advanceSteps; |
| 19 | 19 | |
| 20 | 20 | $progressAdvance = |
| 21 | - function (): void { |
|
| 21 | + function(): void { |
|
| 22 | 22 | echo '*'; |
| 23 | 23 | }; |
| 24 | 24 | |
| 25 | 25 | $progressFinish = |
| 26 | - function (): void { |
|
| 27 | - echo "\e[" . $this->progressBarWidth . 'D'; |
|
| 26 | + function(): void { |
|
| 27 | + echo "\e[".$this->progressBarWidth.'D'; |
|
| 28 | 28 | echo "\e[K"; |
| 29 | 29 | }; |
| 30 | 30 | |