Преглед изворни кода

refactor(wechat): 移除了 Helper 类的使用

runphp пре 6 месеци
родитељ
комит
65abc3fce1
1 измењених фајлова са 1 додато и 2 уклоњено
  1. 1 2
      src/IDCardClient.php

+ 1 - 2
src/IDCardClient.php

@@ -2,7 +2,6 @@
 declare(strict_types=1);
 namespace SixShop\AliyunIDCard;
 
-use SixShop\Core\Helper;
 use Symfony\Component\HttpClient\HttpClient;
 use Symfony\Contracts\HttpClient\HttpClientInterface;
 
@@ -36,7 +35,7 @@ class IDCardClient
         if ($result['resp']['code'] == 0) {
             return $result['data'];
         } else {
-            Helper::throw_logic_exception($result['resp']['desc'], $result['resp']['code']);
+            throw_logic_exception($result['resp']['desc'], $result['resp']['code']);
         }
     }
 }