From fb6f181423d765b83407fb84d8766180aea147c8 Mon Sep 17 00:00:00 2001 From: yggverse Date: Mon, 24 Jun 2024 23:22:14 +0300 Subject: [PATCH] fix line separators --- src/Controller/Cli.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Controller/Cli.php b/src/Controller/Cli.php index b97f3a1..92995b7 100755 --- a/src/Controller/Cli.php +++ b/src/Controller/Cli.php @@ -334,9 +334,8 @@ class Cli private function _summary(): string { return implode( - PHP_EOL, + '', [ - PHP_EOL, Message::blue( _('----------------') ), @@ -384,8 +383,7 @@ class Cli $this->source ) + $this->time ) - ), - PHP_EOL + ) ] ); }