Files
kiri-core/http-server/SInterface/OnPacketInterface.php
T

20 lines
291 B
PHP
Raw Normal View History

2021-08-12 12:40:06 +08:00
<?php
namespace Server\SInterface;
use Server\Abstracts\Server;
2021-09-24 02:23:24 +08:00
interface OnPacketInterface
2021-08-12 12:40:06 +08:00
{
/**
* @param Server $server
* @param string $data
* @param array $clientInfo
* @return mixed
*/
public function onPacket(Server $server, string $data, array $clientInfo): void;
}