23 lines
226 B
PHP
23 lines
226 B
PHP
<?php
|
|
|
|
namespace Kiri\Server\Contract;
|
|
|
|
|
|
use Swoole\WebSocket\Server;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
interface OnCloseInterface
|
|
{
|
|
|
|
|
|
/**
|
|
* @param int $fd
|
|
* @return void
|
|
*/
|
|
public function onClose(int $fd): void;
|
|
|
|
|
|
}
|