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

19 lines
224 B
PHP
Raw Normal View History

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