Config.php 443 B

123456789101112131415161718192021222324
  1. <?php
  2. declare(strict_types=1);
  3. namespace SixShop\TencentCloudSms;
  4. use SixShop\System\Trait\ConfigTrait;
  5. /**
  6. * @property string $secret_id
  7. * @property string $secret_key
  8. * @property string $app_id
  9. * @property string $app_key
  10. * @property string $sign_name
  11. * @property array $tencent_sms_templates
  12. */
  13. class Config
  14. {
  15. use ConfigTrait;
  16. public function getExtensionID(): string
  17. {
  18. return Extension::EXTENSION_ID;
  19. }
  20. }