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