Files
think-worker/src/websocket/Event.php
2026-01-06 13:37:07 +08:00

16 lines
218 B
PHP

<?php
namespace think\worker\websocket;
class Event
{
public $type;
public $data;
public function __construct($type, $data = null)
{
$this->type = $type;
$this->data = $data;
}
}