diff --git a/src/Analyser/Parallel/WorkerProgressHandler.php b/src/Analyser/Parallel/WorkerProgressHandler.php index fb80d677..0df022b9 100644 --- a/src/Analyser/Parallel/WorkerProgressHandler.php +++ b/src/Analyser/Parallel/WorkerProgressHandler.php @@ -6,7 +6,6 @@ use Boundwize\StructArmed\Progress\ProgressHandlerInterface; -use function fflush; use function fwrite; final readonly class WorkerProgressHandler implements ProgressHandlerInterface @@ -23,7 +22,6 @@ public function start(int $total): void public function advance(string $file): void { fwrite($this->stream, "\n"); - fflush($this->stream); } public function finish(): void