Minor Changes

This commit is contained in:
Netkas 2023-02-20 16:06:11 -05:00
parent 11e60c56c4
commit e3ed0529b9
4 changed files with 34 additions and 21 deletions

View file

@ -18,6 +18,8 @@
public function handle(Bot $bot, Update $update): void
{
// reply to the incoming message
$bot->sendMessage($update->getMessage()->getChat()->getId(), 'Hello, ' . $update->getMessage()->getFrom()->getFirstName());
$bot->sendMessage(
$update->getMessage()->getChat()->getId(), 'Hello, ' . $update->getMessage()->getFrom()->getFirstName()
);
}
}