add clear
This commit is contained in:
+22
-22
@@ -118,7 +118,7 @@ class Config
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getSslCa(): string
|
||||
public function getSslCa()
|
||||
{
|
||||
return $this->ssl_ca;
|
||||
}
|
||||
@@ -136,7 +136,7 @@ class Config
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getPort(): string
|
||||
public function getPort()
|
||||
{
|
||||
return $this->port;
|
||||
}
|
||||
@@ -154,7 +154,7 @@ class Config
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
public function isUsrSwoole(): bool
|
||||
public function isUsrSwoole()
|
||||
{
|
||||
return $this->usrSwoole;
|
||||
}
|
||||
@@ -172,7 +172,7 @@ class Config
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getAgent(): string
|
||||
public function getAgent()
|
||||
{
|
||||
return $this->agent;
|
||||
}
|
||||
@@ -226,7 +226,7 @@ class Config
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getAccessToken(): string
|
||||
public function getAccessToken()
|
||||
{
|
||||
return $this->access_token;
|
||||
}
|
||||
@@ -378,7 +378,7 @@ class Config
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getAppid(): string
|
||||
public function getAppid()
|
||||
{
|
||||
return $this->appid;
|
||||
}
|
||||
@@ -386,7 +386,7 @@ class Config
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getMchId(): string
|
||||
public function getMchId()
|
||||
{
|
||||
return $this->mch_id;
|
||||
}
|
||||
@@ -394,7 +394,7 @@ class Config
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getDeviceInfo(): string
|
||||
public function getDeviceInfo()
|
||||
{
|
||||
return $this->device_info;
|
||||
}
|
||||
@@ -402,7 +402,7 @@ class Config
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getNonceStr(): string
|
||||
public function getNonceStr()
|
||||
{
|
||||
return $this->nonce_str;
|
||||
}
|
||||
@@ -410,7 +410,7 @@ class Config
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getBody(): string
|
||||
public function getBody()
|
||||
{
|
||||
return $this->body;
|
||||
}
|
||||
@@ -418,7 +418,7 @@ class Config
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getOutTradeNo(): string
|
||||
public function getOutTradeNo()
|
||||
{
|
||||
return $this->out_trade_no;
|
||||
}
|
||||
@@ -426,7 +426,7 @@ class Config
|
||||
/**
|
||||
* @return int
|
||||
*/
|
||||
public function getTotalFee(): int
|
||||
public function getTotalFee()
|
||||
{
|
||||
return $this->total_fee;
|
||||
}
|
||||
@@ -434,7 +434,7 @@ class Config
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getSpbillCreateIp(): string
|
||||
public function getSpbillCreateIp()
|
||||
{
|
||||
return $this->spbill_create_ip;
|
||||
}
|
||||
@@ -442,7 +442,7 @@ class Config
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getNotifyUrl(): string
|
||||
public function getNotifyUrl()
|
||||
{
|
||||
return $this->notify_url;
|
||||
}
|
||||
@@ -450,7 +450,7 @@ class Config
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getTradeType(): string
|
||||
public function getTradeType()
|
||||
{
|
||||
return $this->trade_type;
|
||||
}
|
||||
@@ -458,7 +458,7 @@ class Config
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getSignType(): string
|
||||
public function getSignType()
|
||||
{
|
||||
return $this->sign_type;
|
||||
}
|
||||
@@ -466,7 +466,7 @@ class Config
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getMchHost(): string
|
||||
public function getMchHost()
|
||||
{
|
||||
return $this->mch_host;
|
||||
}
|
||||
@@ -474,7 +474,7 @@ class Config
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getAppsecret(): string
|
||||
public function getAppsecret()
|
||||
{
|
||||
return $this->appsecret;
|
||||
}
|
||||
@@ -482,7 +482,7 @@ class Config
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getRemoteAddr(): string
|
||||
public function getRemoteAddr()
|
||||
{
|
||||
return $this->remote_addr;
|
||||
}
|
||||
@@ -490,7 +490,7 @@ class Config
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getSslCert(): string
|
||||
public function getSslCert()
|
||||
{
|
||||
return $this->ssl_cert;
|
||||
}
|
||||
@@ -498,7 +498,7 @@ class Config
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getSslKey(): string
|
||||
public function getSslKey()
|
||||
{
|
||||
return $this->ssl_key;
|
||||
}
|
||||
@@ -506,7 +506,7 @@ class Config
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getKey(): string
|
||||
public function getKey()
|
||||
{
|
||||
return $this->key;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user