This commit is contained in:
xl
2023-11-14 01:08:06 +08:00
parent 0d8ddfef54
commit a6a2a0f472
11 changed files with 691 additions and 762 deletions
+20
View File
@@ -14,6 +14,11 @@ class AppConfig
public string $appId = '';
/**
* @var string
*/
private string $host = '';
/**
* @var string
*/
@@ -217,5 +222,20 @@ class AppConfig
$this->signType = $signType;
}
/**
* @return string
*/
public function getHost(): string
{
return $this->host;
}
/**
* @param string $host
*/
public function setHost(string $host): void
{
$this->host = $host;
}
}