Files
ulthon_information/app/admin/controller/Captcha.php
2020-08-12 23:07:51 +08:00

15 lines
197 B
PHP

<?php
namespace app\admin\controller;
use think\captcha\facade\Captcha as ThinkCaptcha;
use think\Request;
class Captcha
{
public function build()
{
return ThinkCaptcha::create();
}
}