Config.php 339 B

1234567891011121314151617181920
  1. <?php
  2. declare(strict_types=1);
  3. namespace SixShop\Auth;
  4. use SixShop\System\Trait\ConfigTrait;
  5. /**
  6. * @property bool $verify_peer 验证服务器证书
  7. * @property bool $verify_host 验证主机名
  8. */
  9. class Config
  10. {
  11. use ConfigTrait;
  12. public function getExtensionID(): string
  13. {
  14. return Extension::EXTENSION_ID;
  15. }
  16. }