18 lines
166 B
PHP
18 lines
166 B
PHP
<?php
|
|
|
|
namespace Kiri\Websocket\Contract;
|
|
|
|
|
|
interface OnCloseInterface
|
|
{
|
|
|
|
|
|
/**
|
|
* @param int $fd
|
|
* @return void
|
|
*/
|
|
public function OnClose(int $fd): void;
|
|
|
|
|
|
}
|