PublicService.php 383 B

123456789101112131415
  1. <?php
  2. namespace App\Services;
  3. class PublicService extends BaseService
  4. {
  5. public static function init($telegram, $data, $chatId, $firstName, $messageId): void
  6. {
  7. switch ($data) {
  8. case "message@@close"://关闭本条消息
  9. $telegram->deleteMessage(['chat_id' => $chatId, 'message_id' => $messageId]);
  10. break;
  11. }
  12. }
  13. }