From 482dd0bb771d135dd6740042311a590c15a26781 Mon Sep 17 00:00:00 2001 From: Jack'lul Date: Tue, 17 Oct 2023 17:30:08 +0200 Subject: [PATCH] Add empty line after the output --- src/BotCore.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BotCore.php b/src/BotCore.php index 376f4a8..a27dd52 100644 --- a/src/BotCore.php +++ b/src/BotCore.php @@ -489,7 +489,7 @@ private function deleteWebhook(): void $result = $this->telegram->deleteWebhook(); if ($result->isOk()) { - print $result->getDescription(); + print $result->getDescription() . PHP_EOL; } else { print 'Request failed: ' . $result->getDescription(); }