Default Changelist
This commit is contained in:
@@ -116,6 +116,10 @@ class Config
|
||||
private string $ssl_ca = '';
|
||||
private int $port = 443;
|
||||
|
||||
|
||||
private string $mchCert = '';
|
||||
private string $mchKey = '';
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
@@ -124,6 +128,38 @@ class Config
|
||||
private string $agent = '';
|
||||
private bool $usrSwoole = false;
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getMchCert(): string
|
||||
{
|
||||
return $this->mchCert;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $mchCert
|
||||
*/
|
||||
public function setMchCert(string $mchCert): void
|
||||
{
|
||||
$this->mchCert = $mchCert;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getMchKey(): string
|
||||
{
|
||||
return $this->mchKey;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $mchKey
|
||||
*/
|
||||
public function setMchKey(string $mchKey): void
|
||||
{
|
||||
$this->mchKey = $mchKey;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user