23 lines
216 B
PHP
23 lines
216 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Server\SInterface;
|
||
|
|
|
||
|
|
use Swoole\Server;
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
interface OnCloseInterface
|
||
|
|
{
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @param Server $server
|
||
|
|
* @param int $fd
|
||
|
|
*/
|
||
|
|
public function onClose(Server $server, int $fd): void;
|
||
|
|
|
||
|
|
|
||
|
|
}
|