feat: 去除冗余var_dump

This commit is contained in:
Ying
2023-07-02 10:31:37 +08:00
parent 79f414ad93
commit e26acaf455

View File

@@ -153,9 +153,7 @@ class SmsService
protected static function getSmsConfig(): array
{
$smsType = saenv('smstype');
var_dump($smsType);
$config = saenv($smsType) ?? [];
var_dump($config);
return ['type' => $smsType, 'config' => $config];
}
}