19 lines
201 B
PHP
19 lines
201 B
PHP
<?php
|
|
|
|
namespace Server\Contract;
|
|
|
|
use Swoole\Server;
|
|
|
|
interface OnDisconnectInterface
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
* @param int $fd
|
|
*/
|
|
public function onDisconnect(int $fd): void;
|
|
|
|
|
|
}
|