diff --git a/app/Core/Bot.php b/app/Core/Bot.php index 3d9b2df..3f4593c 100644 --- a/app/Core/Bot.php +++ b/app/Core/Bot.php @@ -75,6 +75,7 @@ class Bot $this->bot->sendChatAction($this->update->getMessage()->getChat()->getId(), 'typing'); $commandText = $this->getBotCommandText(); return match (true) { + str_starts_with($commandText, '/start') => $this->processHelpCommand(), str_starts_with($commandText, '/list') => $this->processListCommand(), str_starts_with($commandText, '/info') => $this->processInfoCommand(), str_starts_with($commandText, '/help') => $this->processHelpCommand(),