getUpdate()->message; $firstName = $message->from->first_name; $text = "Hello, $firstName! Welcome to our bot!\nType /help to get a list of available commands."; $this->bot->sendMessage([ 'chat_id' => $message->chat->id, 'text' => $text, ]); } /** * Triggered on failure. */ public function failed(array $arguments, Throwable $exception): void { // } }