| 123456789101112131415161718192021222324 |
- <?php
- declare(strict_types=1);
- namespace SixShop\TencentCloudSms;
- use SixShop\System\Trait\ConfigTrait;
- /**
- * @property string $secret_id
- * @property string $secret_key
- * @property string $app_id
- * @property string $app_key
- * @property string $sign_name
- * @property array $tencent_sms_templates
- */
- class Config
- {
- use ConfigTrait;
- public function getExtensionID(): string
- {
- return Extension::EXTENSION_ID;
- }
- }
|