AliSmsServiceFacade.php 484 B

1234567891011121314151617181920
  1. <?php
  2. namespace plugin\ali_sms\service;
  3. use think\Facade;
  4. /**
  5. * 邮件服务门面
  6. * @package app\service
  7. * @method static mixed send($mobile, $event, $templateParam) 发送手机短信
  8. * @method static mixed checkCode($mobile, $event, $code) 检测手机短信验证码
  9. * @method static mixed getError() 获取错误
  10. */
  11. class AliSmsServiceFacade extends Facade
  12. {
  13. protected static function getFacadeClass()
  14. {
  15. return AliSms::class;
  16. }
  17. }