From b5bf328e83a7b8da11065fe0dfbfcf01a0d1cc67 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Tue, 17 Feb 2026 20:17:07 +0300 Subject: [PATCH] Add `number_format` function import to `ProgressBarView` --- src/View/ProgressBarView.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/View/ProgressBarView.php b/src/View/ProgressBarView.php index f6aaa0a..ac26444 100644 --- a/src/View/ProgressBarView.php +++ b/src/View/ProgressBarView.php @@ -8,6 +8,7 @@ use function floor; use function max; +use function number_format; use function str_repeat; use function vsprintf;