mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-27 13:00:23 +08:00
* Merge branches 'develop' and 'master' of https://gitee.com/koogua/cour… * 优化开发登录,计划任务执行路径,周期 * !41 修复课程分类未过滤2 * !40 修复课程分类未过滤2 * !39 修复课程分类未过滤 * !38 修复课程分类未过滤 * Merge branch 'master' of https://gitee.com/koogua/course-tencent-cloud… * !36 修复添加课程后进入列表500错误 * !35 修复腾讯云回调数据结构改变导致的错误 * !34 修复创建课时相关属性表数据未生成的问题 * !23 修复添加课时后进入编辑页面500错误
21 lines
293 B
PHP
21 lines
293 B
PHP
<?php
|
|
|
|
namespace App\Library;
|
|
|
|
class AppInfo
|
|
{
|
|
|
|
protected $name = '酷瓜云课堂';
|
|
|
|
protected $alias = 'CTC';
|
|
|
|
protected $link = 'https://gitee.com/koogua';
|
|
|
|
protected $version = '1.2.1';
|
|
|
|
public function __get($name)
|
|
{
|
|
return $this->{$name} ?? null;
|
|
}
|
|
|
|
} |