|
|
@@ -35,10 +35,10 @@ class WeCallService
|
|
|
{
|
|
|
$config = DictData::where('type_value', 'wecall')->column('value','name');
|
|
|
if ($config) {
|
|
|
- $this->appKey = isset($config['appKey']) ?? '';
|
|
|
- $this->appSecret = isset($config['appSecret']) ?? '';
|
|
|
- $this->taskId = isset($config['taskId']) ?? '';
|
|
|
- $this->status = isset($config['status']) ?? 0;
|
|
|
+ $this->appKey = isset($config['appKey']) ? $config['appKey'] : '';
|
|
|
+ $this->appSecret = isset($config['appSecret']) ? $config['appSecret'] : '';
|
|
|
+ $this->taskId = isset($config['taskId']) ? $config['taskId'] : '';
|
|
|
+ $this->status = isset($config['status']) ? $config['status'] : 0;
|
|
|
}
|
|
|
}
|
|
|
|