Files
kiri-core/http-server/Service/Udp.php
T

28 lines
341 B
PHP
Raw Normal View History

2021-08-12 12:40:06 +08:00
<?php
namespace Server\Service;
use Server\Abstracts\Server;
/**
*
*/
class Udp extends \Server\Abstracts\Udp
{
/**
* @param Server $server
* @param string $data
* @param array $clientInfo
*/
public function onPacket(Server $server, string $data, array $clientInfo): void
{
// TODO: Implement onPacket() method.
}
}