1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-28 05:11:39 +08:00
xiaochong0302 df9d77cad2 1.强化文章|提问|课程列表参数检查
2.优化课程学习时长同步
2023-02-26 19:07:54 +08:00

35 lines
593 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://www.koogua.com';
protected $version = '1.6.3';
public function __get($name)
{
return $this->get($name);
}
public function get($name)
{
if (isset($this->{$name})) {
return $this->{$name};
}
return null;
}
}