From 4f2b9367ae5756b0b7c25da9c1e19a04f91a5c7a Mon Sep 17 00:00:00 2001 From: xl Date: Tue, 14 Nov 2023 09:20:29 +0800 Subject: [PATCH] eee --- qq/QqFactory.php | 6 +++--- wx/WxFactory.php | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/qq/QqFactory.php b/qq/QqFactory.php index ab7e279..741f949 100644 --- a/qq/QqFactory.php +++ b/qq/QqFactory.php @@ -4,7 +4,7 @@ namespace wchat\wx; use Kiri\Di\Container; use ReflectionException; -use wchat\common\PayConfig; +use wchat\common\AppConfig; class QqFactory { @@ -12,11 +12,11 @@ class QqFactory /** * @param $class - * @param PayConfig $config + * @param AppConfig $config * @return mixed * @throws ReflectionException */ - public static function get($class, PayConfig $config): mixed + public static function get($class, AppConfig $config): mixed { $container = Container::instance(); $object = $container->get($class); diff --git a/wx/WxFactory.php b/wx/WxFactory.php index 070cd6b..af6cb3f 100644 --- a/wx/WxFactory.php +++ b/wx/WxFactory.php @@ -4,7 +4,7 @@ namespace wchat\wx; use Kiri\Di\Container; use ReflectionException; -use wchat\common\PayConfig; +use wchat\common\AppConfig; class WxFactory { @@ -12,11 +12,11 @@ class WxFactory /** * @param $class - * @param PayConfig $config + * @param AppConfig $config * @return object|null * @throws ReflectionException */ - public static function get($class, PayConfig $config): ?object + public static function get($class, AppConfig $config): ?object { $container = Container::instance(); $object = $container->get($class);