| 1234567891011121314151617181920 |
- <?php
- namespace yiovo\captcha\facade;
- use think\Facade;
- /**
- * Class Captcha
- * @package yiovo\captcha\facade
- * @mixin \yiovo\captcha\Captcha
- * @method static array create(string $config = null) 生成图形验证码并把验证码的值保存的缓存中
- * @method static bool check(string $code, string $key) 验证图形验证码是否正确
- */
- class Captcha extends Facade
- {
- protected static function getFacadeClass()
- {
- return \yiovo\captcha\Captcha::class;
- }
- }
|