think-captcha icon indicating copy to clipboard operation
think-captcha copied to clipboard

facade应该返回类字符串,这样可以通过provider自定义

Open augushong opened this issue 3 years ago • 0 comments

<?php

namespace think\captcha\facade;

use think\Facade;

/**
 * Class Captcha
 * @package think\captcha\facade
 * @mixin \think\captcha\Captcha
 */
class Captcha extends Facade
{
    protected static function getFacadeClass()
    {
        return 'think\captcha\Captcha';
    }
}

augushong avatar Apr 09 '22 02:04 augushong