mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-24 20:06:09 +08:00
23 lines
330 B
PHP
23 lines
330 B
PHP
<?php
|
|
|
|
namespace App\Library;
|
|
|
|
class AppInfo
|
|
{
|
|
|
|
protected $name = '酷瓜云课堂';
|
|
|
|
protected $alias = 'CTC';
|
|
|
|
protected $link = 'https://koogua.com';
|
|
|
|
protected $version = '1.2.6';
|
|
|
|
public function __get($name)
|
|
{
|
|
if (isset($this->{$name})) {
|
|
return $this->{$name};
|
|
}
|
|
}
|
|
|
|
} |