短信装载器
框架目前已经内置牛云短信、阿里云短信、腾讯云短信。
SmsLoader负责管理短信发送功能,支持对接不同的短信服务提供商。
文件目录 niucloud\core\sms\SmsLoader.php
php
class SmsLoader extends Loader
{
/**
* 空间名
* @var string
*/
protected $namespace = '\core\sms\';
protected $config_name = 'sms';
/**
* 默认驱动
* @return mixed
*/
protected function getDefault()
{
return config('sms.default');
}
}