| 1234567891011121314151617181920 |
- <?php
- declare(strict_types=1);
- namespace SixShop\Auth;
- use SixShop\System\Trait\ConfigTrait;
- /**
- * @property bool $verify_peer 验证服务器证书
- * @property bool $verify_host 验证主机名
- */
- class Config
- {
- use ConfigTrait;
- public function getExtensionID(): string
- {
- return Extension::EXTENSION_ID;
- }
- }
|