Files
kiri-core/http-server/SInterface/OnConnect.php
T

19 lines
215 B
PHP
Raw Normal View History

2021-08-12 12:40:06 +08:00
<?php
namespace Server\SInterface;
use Swoole\Server;
interface OnConnect
{
/**
* @param Server $server
* @param int $fd
* @return void
*/
public function onConnect(Server $server, int $fd): void;
}