1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-25 12:09:09 +08:00
xiaochong0302 9cb1edfa49 1.修正home模块编辑器图片上传
2.精简CsrfToken白名单
2024-02-04 16:57:45 +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.9';
public function __get($name)
{
return $this->get($name);
}
public function get($name)
{
if (isset($this->{$name})) {
return $this->{$name};
}
return null;
}
}