MQTT 管理客户端

This commit is contained in:
2025-05-07 10:51:21 +08:00
commit 5eefef9b19
9 changed files with 532 additions and 0 deletions

20
src/IRequest.php Normal file
View File

@@ -0,0 +1,20 @@
<?php
namespace cn\com\maiyoule\mqttclient;
abstract class IRequest
{
/**
* 请求路径
* @return string
*/
abstract public function path(): string;
/**
* 载体
* @return array
*/
abstract public function body(): array;
}