修正测试环境判断条件
This commit is contained in:
parent
6569cf21a2
commit
a4bea873fd
@ -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();
|
||||
|
||||
@ -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();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user