From 2c94eab61ee56cd14dbb86298dfe118cf471cf3f Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sat, 26 Apr 2025 15:23:27 +0200 Subject: [PATCH] Runner: use StatusWriter::writeNewline() Follow up on 1010 and 1011. PR 1011 moved the Timing display to the `Runner` class, but didn't take the change to PR 1010, introducing the `writeNewline()` method into account. Fixed up now. --- src/Runner.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Runner.php b/src/Runner.php index 6104a4ab6f..fccd1e112d 100644 --- a/src/Runner.php +++ b/src/Runner.php @@ -208,7 +208,7 @@ public function runPHPCBF() $this->reporter->printReports(); if ($this->config->quiet === false) { - StatusWriter::write(''); + StatusWriter::writeNewline(); Timing::printRunTime(); } } catch (DeepExitException $e) {