fix(Doc Config update):

This commit is contained in:
jay
2021-02-22 16:36:14 +08:00
parent c7af84a881
commit a5346ed4e6
4 changed files with 66 additions and 31 deletions
@@ -0,0 +1,66 @@
<?php
namespace App\Document;
class Config
{
/**
* 标题
*
* @return string
*/
public static function getTitle()
{
return '演示';
}
/**
* 出版商
*
* @return string
*/
public function getPublishing()
{
return '';
}
/**
* 说明
*
* @return string
*/
public function getExplain()
{
return '';
}
/**
* 注意
*
* @return string
*/
public function getNote()
{
return '';
}
/**
* 附录
*
* @return string
*/
public function getAppendix()
{
return '';
}
/**
* 主机
*
* @return mixed
*/
public function getHost()
{
return $_ENV['DOC_HOST'];
}
}