You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1015 B
41 lines
1015 B
<?php
|
|
/*----------------------------------------------------------------------
|
|
* 项目名称: CloudAdmin
|
|
* +----------------------------------------------------------------------
|
|
* 版权所有: 2014~2020 安徽云掌开发团队
|
|
* +----------------------------------------------------------------------
|
|
* 官方网站: [ http://www.yaoyz.com、http://www.ahyunzhang.com ]
|
|
* +----------------------------------------------------------------------
|
|
* Date: 2018/11/15 9:47
|
|
* +----------------------------------------------------------------------
|
|
* Des: 前台基类
|
|
+----------------------------------------------------------------------*/
|
|
|
|
namespace app\api\controller;
|
|
|
|
use think\Controller;
|
|
|
|
class Base extends Controller
|
|
{
|
|
/**
|
|
* 配置信息
|
|
* @var array
|
|
*/
|
|
static protected $config = [];
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
/**
|
|
* 获取全局配置信息
|
|
* @return \type
|
|
*/
|
|
private function getConfig()
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|