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