1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-24 20:06:09 +08:00
2022-01-13 11:01:06 +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.0';
public function __get($name)
{
return $this->get($name);
}
public function get($name)
{
if (isset($this->{$name})) {
return $this->{$name};
}
}
}