1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-27 21:10:24 +08:00
koogua af65adaf94 1.补充话题列表课程数据结构
2.调整发送验证码相关样式
3.优化套餐和话题下拉课程数据显示
4.去除礼物详情中多出来的"}}"标签
5.修正关闭秒杀订单时没有回填库存的问题
6.vditor编辑器切换为七牛cdn加速
2022-04-30 11:23:33 +08:00

33 lines
567 B
PHP

<?php
/**
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
* @license https://opensource.org/licenses/GPL-2.0
* @link https://www.koogua.com
*/
namespace App\Library;
class AppInfo
{
protected $name = '酷瓜云课堂';
protected $alias = 'CTC';
protected $link = 'https://koogua.com';
protected $version = '1.5.2';
public function __get($name)
{
return $this->get($name);
}
public function get($name)
{
if (isset($this->{$name})) {
return $this->{$name};
}
}
}