16 lines
173 B
PHP
16 lines
173 B
PHP
<?php
|
|
|
|
namespace Kiri\Server\Contract;
|
|
|
|
interface OnDisconnectInterface
|
|
{
|
|
|
|
|
|
/**
|
|
* @param int $fd
|
|
*/
|
|
public function OnDisconnect(int $fd): void;
|
|
|
|
|
|
}
|