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

11 lines
139 B
PHP

<?php
namespace think\worker\websocket;
class Frame
{
public function __construct(public int $fd, public string $data)
{
}
}