Sms.php 500 B

1234567891011121314151617181920212223242526
  1. <?php namespace App\Facades\Servers\Tencent;
  2. use Illuminate\Support\Facades\Facade;
  3. /**
  4. * 短信发送
  5. *
  6. * @method static array sendSms(string $phone,string $signName,string $templateCode,array $param=[]) 发送短信
  7. *
  8. * @see \App\Servers\Tencent\Sms
  9. *
  10. */
  11. class Sms extends Facade
  12. {
  13. /**
  14. * Get the registered name of the component.
  15. *
  16. * @return string
  17. */
  18. protected static function getFacadeAccessor()
  19. {
  20. return '\App\Servers\Tencent\Sms';
  21. }
  22. }
  23. ?>