Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
25 | 11 | protected function update(float $percent): void |
|
26 | { |
||
27 | 11 | $progress = bounds($percent, 0, 1); |
|
28 | 11 | $this->currentFrame = $this->prefix. (int)($progress * 100) . '%' . $this->suffix . $this->spacer; |
|
|
|||
29 | 11 | $this->currentFrameErasingLength = strlen($this->currentFrame); |
|
30 | 11 | } |
|
48 |