20 lines
380 B
PHP
20 lines
380 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace wchat\wx\V3;
|
||
|
|
|
||
|
|
class Config
|
||
|
|
{
|
||
|
|
|
||
|
|
protected string $appId = '';
|
||
|
|
protected string $appSecret = '';
|
||
|
|
protected string $mchId = '';
|
||
|
|
protected string $mchKey = '';
|
||
|
|
protected string $secret = '';
|
||
|
|
protected string $mchCert = '';
|
||
|
|
protected string $SerialNumber = '';
|
||
|
|
protected string $notifyUrl = '';
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|