代码功能更新
This commit is contained in:
Executable
+23
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user