diff --git a/config/ajcaptcha.php b/config/ajcaptcha.php index 1fdb18bc..ad91bcde 100644 --- a/config/ajcaptcha.php +++ b/config/ajcaptcha.php @@ -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") /** diff --git a/crmeb/services/easywechat/miniPayment/Client.php b/crmeb/services/easywechat/miniPayment/Client.php index efbee348..3a6bed48 100644 --- a/crmeb/services/easywechat/miniPayment/Client.php +++ b/crmeb/services/easywechat/miniPayment/Client.php @@ -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; }