回滚验证码缓存

This commit is contained in:
luofei 2023-06-03 15:29:25 +08:00
parent 265870715f
commit f80bbcd2d8
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ return [
],
'cache' => [
//若您使用了框架并且想使用类似于redis这样的缓存驱动则应换成框架的中的缓存驱动
'constructor' => [think\Facade\Cache::class, 'instance'],
'constructor' => \Fastknife\Utils\CacheUtils::class,
'method' => [
//遵守PSR-16规范不需要设置此项tp6, laravel,hyperf。如tp5就不支持tp5缓存方法是rm,所以要配置为"delete" => "rm"
/**

View File

@ -34,7 +34,7 @@ class Client extends BaseClient
*/
public function __construct(AccessToken $accessToken, Merchant $merchant)
{
parent::__construct($accessToken, app());
parent::__construct($accessToken);
$this->merchant = $merchant;
}