修正测试环境判断条件

This commit is contained in:
wucongxing8150 2024-06-11 13:28:04 +08:00
parent 6569cf21a2
commit a4bea873fd
2 changed files with 2 additions and 2 deletions

View File

@ -122,7 +122,7 @@ class DoctorAuthService extends BaseService
// 网易易盾认证
// 实人认证-生产环境开启
$app_env = config('app_env','dev');
if ($app_env == "dev"){
if ($app_env != "dev"){
$IdCard = new IdCard();
$params = array();

View File

@ -175,7 +175,7 @@ class PatientFamilyService extends BaseService
// 实人认证-生产环境开启
$app_env = config('app_env', 'dev');
if ($app_env == "dev") {
if ($app_env != "dev") {
$IdCard = new IdCard();
$params = array();