From 469178a14096fec4660703bf97c86b4a26ed2471 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Proch=C3=A1zka?= Date: Wed, 4 Dec 2024 20:45:09 +0100 Subject: [PATCH] Dont hide progress on finish by default --- src/Console/Tools/ProgressIndicator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/Tools/ProgressIndicator.php b/src/Console/Tools/ProgressIndicator.php index 4616f2b..77a13f0 100644 --- a/src/Console/Tools/ProgressIndicator.php +++ b/src/Console/Tools/ProgressIndicator.php @@ -25,7 +25,7 @@ public function __construct( OutputInterface $output, int $max = 0, private ?bool $throwExceptions = null, - private bool $hideOnFinish = true, + private bool $hideOnFinish = false, private bool $logExceptions = true, ) { $this->progress = new ProgressBar($output, $max);