代码功能更新

This commit is contained in:
root
2025-05-18 07:42:27 +00:00
parent 7fc1d422a1
commit 4a90c41da2
2083 changed files with 695218 additions and 3 deletions
+23
View File
@@ -0,0 +1,23 @@
<?php
namespace app\service\admin;
use think\Facade;
/**
* 插件市场服务门面
* @package app\service\admin
* @method static mixed getError() 获取错误信息
* @method static mixed offLineInstall() 离线安装
* @method static mixed unInstall($plugin) 卸载
* @method static mixed getPluginPath($plugin) 获取插件目录
* @method static mixed getPluginInfo($plugin) 获取插件信息
* @method static mixed install($plugin, $laytpGwToken) 安装插件
*/
class PluginsServiceFacade extends Facade
{
protected static function getFacadeClass()
{
return Plugins::class;
}
}