*/ public function broadcastOn(): array { return [ new PresenceChannel('room.'.$this->roomId), ]; } /** * 广播数据:特效类型、操作者、目标用户、赠言 * * @return array */ public function broadcastWith(): array { return [ 'type' => $this->type, 'operator' => $this->operator, 'target_username' => $this->targetUsername, // null = 全员 'gift_message' => $this->giftMessage, ]; } }